Make fields of PrivateKey pub

This commit is contained in:
Leo Alt
2023-02-06 11:43:06 +01:00
parent 5e3ee25cc9
commit 870cee750e

View File

@@ -268,7 +268,7 @@ pub fn decompress_signature(b: &[u8; 64]) -> Result<Signature, String> {
}
pub struct PrivateKey {
key: [u8; 32],
pub key: [u8; 32],
}
impl PrivateKey {