Skip to content

Commit cc4f1a0

Browse files
committed
no drb check for now
1 parent be1f4a6 commit cc4f1a0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

hotshot/src/traits/election/dummy_catchup_membership.rs

+2-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ impl<TYPES: NodeType> DummyCatchupCommittee<TYPES> {
2020
let Some(epoch) = epoch else {
2121
return;
2222
};
23-
let pass = self.epochs.contains(&epoch) && self.drbs.contains(&epoch);
23+
let pass = self.epochs.contains(&epoch);
24+
//&& self.drbs.contains(&epoch);
2425
if !pass {
2526
tracing::error!("FAILEAD EPOCH CHECK {epoch}");
2627
}

0 commit comments

Comments
 (0)