Test handling of DKG commitments transactions

This commit is contained in:
Luke Parker
2023-04-23 01:00:46 -04:00
parent af84b7f707
commit 3f6565588f
4 changed files with 171 additions and 3 deletions

View File

@@ -14,6 +14,8 @@ pub use chain::*;
mod tx;
mod dkg;
fn random_u32<R: RngCore>(rng: &mut R) -> u32 {
u32::try_from(rng.next_u64() >> 32).unwrap()
}