make POWRange fields public

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

View File

@ -5,8 +5,8 @@ use crate::{hash::hash_num, num::Num};
#[derive(Debug, Clone)] #[derive(Debug, Clone)]
pub struct POWRange { pub struct POWRange {
min: u128, pub min: u128,
max: u128 pub max: u128
} }
impl POWRange { impl POWRange {