aboutsummaryrefslogtreecommitdiff
path: root/core/src/crypto
diff options
context:
space:
mode:
authorhozan23 <hozan23@proton.me>2024-03-22 12:42:24 +0100
committerhozan23 <hozan23@proton.me>2024-03-22 12:42:24 +0100
commita69917ecd8272a4946cfd12c75bf8f8c075b0e50 (patch)
treee1da2c8b628cef0de24ad52034f6e62b2c9b10a6 /core/src/crypto
parent5baf14594331b1b0b60d655240eb398bcce61f7c (diff)
core: cargo clippy fix & clean up comments
Diffstat (limited to 'core/src/crypto')
-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 {