Skip to content
This repository has been archived by the owner on Jun 22, 2023. It is now read-only.

Commit

Permalink
removed redundant ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrej Zavgorodnij committed Dec 13, 2020
1 parent 7b40896 commit 60ee6f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fsm/state_machines/dkg_proposal_fsm/actions.go
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ func (m *DKGProposalFSM) actionValidateDkgProposalAwaitCommits(inEvent fsm.Event
}

unconfirmedParticipants := m.payload.DKGQuorumCount()
for _, participant := range m.payload.DKGProposalPayload.Quorum.GetOrderedParticipants() {
for _, participant := range m.payload.DKGProposalPayload.Quorum {
if participant.Status == internal.CommitConfirmationError {
isContainsError = true
} else if participant.Status == internal.CommitConfirmed {
Expand Down

0 comments on commit 60ee6f1

Please sign in to comment.