You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
next_block_proposer method of the trait ValidatorSet have assumed that validators method returns the validators sorted in a desirable order so that it can just pick the next validator by the index view.
However, the ordering rule changed after #388 and the previous behavior can not be simulated by the SimpleValidator in mold which only contains voting_power and public_key. I can copy the previous logic properly to recover the behavior.
The text was updated successfully, but these errors were encountered:
next_block_proposer
method of the traitValidatorSet
have assumed thatvalidators
method returns the validators sorted in a desirable order so that it can just pick the next validator by the indexview
.However, the ordering rule changed after #388 and the previous behavior can not be simulated by the
SimpleValidator
in mold which only containsvoting_power
andpublic_key
. I can copy the previous logic properly to recover the behavior.The text was updated successfully, but these errors were encountered: