Skip to content

Commit

Permalink
Mina-signer: make secret field of KeyPair public
Browse files Browse the repository at this point in the history
  • Loading branch information
dannywillems committed Dec 4, 2024
1 parent a58943d commit 9b2ad57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signer/src/keypair.rs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ pub type Result<T> = std::result::Result<T, KeypairError>;
#[derive(Clone, PartialEq, Eq)]
pub struct Keypair {
/// Secret key
pub(crate) secret: SecKey,
pub secret: SecKey,
/// Public key
pub public: PubKey,
}
Expand Down

0 comments on commit 9b2ad57

Please sign in to comment.