diff --git a/crates/testing/src/task_helpers.rs b/crates/testing/src/task_helpers.rs index b43a85d457..5278bb3b86 100644 --- a/crates/testing/src/task_helpers.rs +++ b/crates/testing/src/task_helpers.rs @@ -279,7 +279,6 @@ async fn build_quorum_proposal_and_signature( timeout_certificate: None, proposer_id: leaf_view2.proposer_id, }; - error!("Have you really entered view 2?"); return (proposal_view2, signature_view2); } diff --git a/crates/testing/tests/consensus_task.rs b/crates/testing/tests/consensus_task.rs index 11bce6cfc4..a0598b2f6b 100644 --- a/crates/testing/tests/consensus_task.rs +++ b/crates/testing/tests/consensus_task.rs @@ -197,7 +197,7 @@ async fn test_consensus_with_vid() { // For the test of vote logic with vid, starting view 2 we need vid share input.push(HotShotEvent::ViewChange(ViewNumber::new(2))); let proposal_view2 = build_quorum_proposal(&handle, &private_key_view2, 2).await; - // Sishan TODO: Still need a valid DAC cert + // TODO: Still need a valid DAC cert, now tracking logging instead // https://github.com/EspressoSystems/HotShot/issues/2255 input.push(HotShotEvent::VidDisperseRecv(vid_proposal.clone(), pub_key)); @@ -213,7 +213,7 @@ async fn test_consensus_with_vid() { ); output.insert(HotShotEvent::VidDisperseRecv(vid_proposal, pub_key), 1); - // Sishan TODO: Uncomment this after the above TODO is done + // TODO: Uncomment this after the above TODO is done // https://github.com/EspressoSystems/HotShot/issues/2255 // if let GeneralConsensusMessage::Vote(vote) = build_vote(&handle, proposal_view2.data).await { // output.insert(HotShotEvent::QuorumVoteSend(vote.clone()), 1);