You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Release build fails with the msg below. Haven't investigated yet, will take a closer look to update galileo to match the most recent interfaces.
error[E0432]: unresolved import `penumbra_custody::SoftKms`
--> src/opt/serve.rs:6:5
|
6 | use penumbra_custody::SoftKms;
| ^^^^^^^^^^^^^^^^^^^^^^^^^ no `SoftKms` in the root
|
help: consider importing this struct instead
|
6 | use penumbra_custody::soft_kms::SoftKms;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
error[E0432]: unresolved import `penumbra_proto::Protobuf`
--> src/wallet.rs:151:13
|
151 | use penumbra_proto::Protobuf;
| ^^^^^^^^^^^^^^^^^^^^^^^^ no `Protobuf` in the root
|
help: a similar name exists in the module
|
151 | use penumbra_proto::protobuf;
| ~~~~~~~~
help: consider importing this trait instead
|
151 | use tendermint_proto::Protobuf;
| ~~~~~~~~~~~~~~~~~~~~~~~~~~~
error[E0599]: no method named `encode_to_vec` found for reference `&penumbra_transaction::Transaction` in the current scope
--> src/wallet.rs:161:45
|
161 | "params": [&transaction.encode_to_vec()],
| ^^^^^^^^^^^^^ method not found in `&penumbra_transaction::Transaction`
|
= help: items from traits can only be used if the trait is in scope
help: the following trait is implemented but not in scope; perhaps add a `use` for it:
|
1 | use penumbra_proto::DomainType;
|
Some errors have detailed explanations: E0432, E0599.
For more information about an error, try `rustc --explain E0432`.
error: could not compile `galileo` due to 3 previous errors
The text was updated successfully, but these errors were encountered:
Release build fails with the msg below. Haven't investigated yet, will take a closer look to update galileo to match the most recent interfaces.
The text was updated successfully, but these errors were encountered: