From 9b2ad579850297374fcc028966a33cba97ceea28 Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Tue, 12 Nov 2024 11:50:24 +0100 Subject: [PATCH] Mina-signer: make secret field of KeyPair public --- signer/src/keypair.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signer/src/keypair.rs b/signer/src/keypair.rs index e2397c8f9d..8f76383020 100644 --- a/signer/src/keypair.rs +++ b/signer/src/keypair.rs @@ -27,7 +27,7 @@ pub type Result = std::result::Result; #[derive(Clone, PartialEq, Eq)] pub struct Keypair { /// Secret key - pub(crate) secret: SecKey, + pub secret: SecKey, /// Public key pub public: PubKey, }