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
* 3933 DrbComputations helper for quorum_vote
* 3933 modify logic of drb computation to start at epoch transition
* 3933 check for if we should store the seed based on when we're expecting to be in the committee
* 3933 always start the task for drb
* 3933 fix clippy lints
* 3933 avoid unwrapping leaf_views.last()
* 3933 additional fixes
* 3933 correct nits, use proposal block number to calculate epoch number
* 3933 break drb_calculation_start and drb_calculation_seed into separate functions
* 3933 fix comment
Refactor
drb_computations
from a singleBTreeMap
to contain:results: BTreeMap<epoch, Result>
for the current epoche
, and fore + 1
if the computation is done, with garbage collection.task: Option<(epoch, computation_task)>
for the next epoche + 1
before the computation is done, using the seed stored from the previous epoch.seeds: BTreeMap<epoch, seed>
fore + 2
and/ore +1
depending on the block number, with garbage collection.Zulip discussion: https://espresso.zulipchat.com/#narrow/channel/462904-eng-proof-of-stake/topic/DRB.20integration/near/485669746.
The text was updated successfully, but these errors were encountered: