Skip to content

Commit

Permalink
Add imports for secp256k1 and ed25519 proto defs (#73)
Browse files Browse the repository at this point in the history
I missed these in my previous comments, just a few minor key type
structs.
  • Loading branch information
jkilpatr authored Apr 8, 2021
1 parent c8ef69e commit 3c6ead6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions cosmos-sdk-proto/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,10 +103,17 @@ pub mod cosmos {
pub mod crypto {
/// Multi-signature support.
pub mod multisig {
include!("prost/cosmos.crypto.multisig.rs");
pub mod v1beta1 {
include!("prost/cosmos.crypto.multisig.v1beta1.rs");
}
}
pub mod ed25519 {
include!("prost/cosmos.crypto.ed25519.rs");
}
pub mod secp256k1 {
include!("prost/cosmos.crypto.secp256k1.rs");
}
}

/// Messages and services handling token distribution
Expand Down

0 comments on commit 3c6ead6

Please sign in to comment.