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
Fix false-positive double-sign slashing on delayed proposals
View numbers are reused across blocks (StartRound sets view = blockNumber),
so delayed proposals from previous rounds can arrive after _proposalsByView
is cleared and collide with current-round entries. Guard double-sign
detection with a block number check to prevent stale proposals from
corrupting the detection state and incorrectly slashing validators.
0 commit comments