aboutsummaryrefslogtreecommitdiff
path: root/core/src/crypto/key_pair.rs
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/crypto/key_pair.rs')
-rw-r--r--core/src/crypto/key_pair.rs2
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 {