Browse Source

Make fields of PrivateKey pub

pull/5/head
Leo Alt 1 year ago
parent
commit
870cee750e
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/lib.rs

+ 1
- 1
src/lib.rs

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

Loading…
Cancel
Save