make POWChallenge properties public

This commit is contained in:
b1ek 2023-08-02 20:43:27 +10:00
parent e08f890ace
commit 7bd4d69f5d
Signed by: blek
GPG Key ID: 14546221E3595D0C
1 changed files with 2 additions and 2 deletions

View File

@ -17,8 +17,8 @@ impl POWRange {
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct POWChallenge { pub struct POWChallenge {
hash: [u8; 32], pub hash: [u8; 32],
range: POWRange pub range: POWRange
} }
impl POWChallenge { impl POWChallenge {