From 0aadeafe1cca73de7d1c23547d24e17c07ebf8a2 Mon Sep 17 00:00:00 2001 From: Roman Date: Wed, 12 Jun 2024 17:37:27 +0200 Subject: [PATCH] fix: formatting --- ledger/cryptarchia-ledger/src/lib.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/ledger/cryptarchia-ledger/src/lib.rs b/ledger/cryptarchia-ledger/src/lib.rs index ad058ff6..a2483a1a 100644 --- a/ledger/cryptarchia-ledger/src/lib.rs +++ b/ledger/cryptarchia-ledger/src/lib.rs @@ -744,7 +744,6 @@ pub mod tests { #[test] fn test_conversions_for_leader_proof() { - let commitment = Commitment::from([0u8; 32]); let commitment_bytes: [u8; 32] = commitment.into(); @@ -764,6 +763,5 @@ pub mod tests { assert_eq!(leader_proof.commitment(), &commitment); assert_eq!(leader_proof.evolved_commitment(), &commitment); assert_eq!(leader_proof.nullifier(), &nullifier); - } }