Skip to content

Commit

Permalink
add proposal validated event
Browse files Browse the repository at this point in the history
  • Loading branch information
jparr721 committed Mar 26, 2024
1 parent 7466033 commit 7638124
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions crates/task-impls/src/quorum_proposal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -421,6 +421,11 @@ impl<TYPES: NodeType, I: NodeImplementation<TYPES>> QuorumProposalTaskState<TYPE
if !validate_quorum_proposal(proposal.clone(), event_sender.clone()) {
return;
}
broadcast_event(
Arc::new(HotShotEvent::QuorumProposalValidated(proposal.data.clone())),
&event_sender.clone(),
)
.await;

self.create_dependency_task_if_new(
view,
Expand Down

0 comments on commit 7638124

Please sign in to comment.