Skip to content

Commit 59a57eb

Browse files
committed
Fix missing trait imports
1 parent 9e64094 commit 59a57eb

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/crypto/merkle_tree/parameters.rs

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@ use ark_crypto_primitives::{
77
};
88
use ark_ff::Field;
99
use ark_serialize::{CanonicalDeserialize, CanonicalSerialize};
10-
use rand::RngCore;
10+
use rand::{CryptoRng, RngCore};
1111
use serde::{Deserialize, Serialize};
1212
use spongefish::{
13-
ByteDomainSeparator, BytesToUnitDeserialize, BytesToUnitSerialize, DomainSeparator, ProofError,
14-
ProofResult, ProverState, VerifierState,
13+
ByteDomainSeparator, BytesToUnitDeserialize, BytesToUnitSerialize, DomainSeparator, DuplexSpongeInterface, ProofError, ProofResult, ProverState, Unit, VerifierState
1514
};
1615

1716
use super::{digest::GenericDigest, IdentityDigestConverter};

0 commit comments

Comments
 (0)