diff --git a/crates/interfaces/src/test_utils/headers.rs b/crates/interfaces/src/test_utils/headers.rs index 6e4369e465..087594c092 100644 --- a/crates/interfaces/src/test_utils/headers.rs +++ b/crates/interfaces/src/test_utils/headers.rs @@ -153,7 +153,7 @@ pub struct TestConsensus { /// Watcher over the forkchoice state channel: (watch::Sender, watch::Receiver), /// Flag whether the header validation should purposefully fail - fail_validation: AtomicBool, // Mutex, + fail_validation: AtomicBool, } impl Default for TestConsensus { @@ -164,7 +164,7 @@ impl Default for TestConsensus { finalized_block_hash: H256::zero(), safe_block_hash: H256::zero(), }), - fail_validation: AtomicBool::new(false), // Mutex::new(false), + fail_validation: AtomicBool::new(false), } } }