-
Notifications
You must be signed in to change notification settings - Fork 133
cannot multiply &&EdwardsBasepointTable by &Scalar #146
Copy link
Copy link
Closed
Description
Hi there, I'm facing this issue when compiling my Substrate program:
error[E0369]: cannot multiply `&&EdwardsBasepointTable` by `&Scalar`
--> /Users/kofiotuo/.cargo/registry/src/github.com-1ecc6299db9ec823/snow-0.9.0/src/resolvers/default.rs:132:47
|
132 | let point = (&ED25519_BASEPOINT_TABLE * &self.privkey).to_montgomery();
| ------------------------ ^ ------------- &Scalar
| |
| &&EdwardsBasepointTable
|
help: `*` can be used on `&EdwardsBasepointTable` if you dereference the left-hand side
|
132 | let point = (*&ED25519_BASEPOINT_TABLE * &self.privkey).to_montgomery();
| +
For more information about this error, try `rustc --explain E0369`.
error: could not compile `snow` due to previous error
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels