diff options
Diffstat (limited to 'core/src/crypto')
-rw-r--r-- | core/src/crypto/key_pair.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/crypto/key_pair.rs b/core/src/crypto/key_pair.rs index efaae47..a7a8eaf 100644 --- a/core/src/crypto/key_pair.rs +++ b/core/src/crypto/key_pair.rs @@ -9,7 +9,7 @@ pub enum KeyPairType { } /// A Secret key -pub struct SecretKey(Vec<u8>); +pub struct SecretKey(pub Vec<u8>); #[derive(Clone)] pub enum KeyPair { |