fix: surpress warnings

This commit is contained in:
Jude Nelson
2022-10-18 16:59:34 -04:00
parent 0bde57822c
commit 7f4dc0bb0b

View File

@@ -20,7 +20,6 @@ pub struct Keychain {
microblocks_secret_keys: Vec<StacksPrivateKey>,
vrf_secret_keys: Vec<VRFPrivateKey>,
vrf_map: HashMap<VRFPublicKey, VRFPrivateKey>,
rotations: u64,
}
impl Keychain {
@@ -46,7 +45,6 @@ impl Keychain {
microblocks_secret_keys: vec![],
secret_keys,
threshold,
rotations: 0,
vrf_secret_keys: vec![],
vrf_map: HashMap::new(),
}