Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
bfish713 committed Mar 4, 2025
1 parent c5d7cc9 commit 784202d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion hotshot-task-impls/src/quorum_proposal/handlers.rs
Original file line number Diff line number Diff line change
Expand Up @@ -316,7 +316,11 @@ impl<TYPES: NodeType, V: Versions> ProposalDependencyHandle<TYPES, V> {
self.epoch_height,
);

let epoch_membership = self.membership.coordinator.membership_for_epoch(epoch).await?;
let epoch_membership = self
.membership
.coordinator
.membership_for_epoch(epoch)
.await?;
// Make sure we are the leader for the view and epoch.
// We might have ended up here because we were in the epoch transition.
if epoch_membership.leader(self.view_number).await? != self.public_key {
Expand Down

0 comments on commit 784202d

Please sign in to comment.