Skip to content

Commit

Permalink
Merge pull request #2755 from o1-labs/dw/make-secret-field-public-min…
Browse files Browse the repository at this point in the history
…a-signer

Mina-signer: make secret field of KeyPair public
  • Loading branch information
dannywillems authored Dec 4, 2024
2 parents 55c51b3 + 9b2ad57 commit abc1bbb
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 abc1bbb

Please sign in to comment.