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
The QBFT paper states that each upon rules should only be triggered once per round (with the exception of uponJustifiedDecided.
The current implementation allows for rules to be triggered multiple times.
Note this isn't such a big problem, since the algorithm is idempotent, the only affect is that more messages are sent over the wire then necessary.
category: refactor
ticket: #523
Problem to be solved
The QBFT paper states that each upon rules should only be triggered once per round (with the exception of
uponJustifiedDecided
.The current implementation allows for rules to be triggered multiple times.
Note this isn't such a big problem, since the algorithm is idempotent, the only affect is that more messages are sent over the wire then necessary.
Proposed solution
dedupIn
, implement adedupRule
map to deduplicate upon rules per round.trimBuffer
The text was updated successfully, but these errors were encountered: