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
Uses the recursive-triplet-majority method on the last 81 blocks. Also removes the need for with-env stuff (though let it be known, this makes serialisation/deserialisation more likely to become a performance bottleneck).
The reason will be displayed to describe this comment to others. Learn more.
so for the first 81 blocks the random seed won't be random at all -- I wonder if it's better to use a filter_map so that the early randomness is much more manipulable but not dominated by zero hashes. In polkadot we should have an initial epoch shuffle which ends after randomness is well-seeded.
* read head-data directly out of WASM memory
* implement ext_post_message for parachain WASM
* further refactoring of the parachain module
* add externalities error type
* accumulate posted messages when validating parachain candidate
* define Extrinsic type in primitives
* availability-store: store extrinsic data
* compute extrinsic and check against candidate
* add some egress queue tests
* grumbles & substrate update
* ensure everything builds
JoshOrndorff pushed a commit
to moonbeam-foundation/substrate
that referenced
this pull request
Apr 21, 2021
…dator
Do not submit unsigned root block extrinsic on nodes that do not produce blocks themselves
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Uses the recursive-triplet-majority method on the last 81 blocks. Also removes the need for
with-envstuff (though let it be known, this makes serialisation/deserialisation more likely to become a performance bottleneck).http://www.cs.huji.ac.il/~nati/PAPERS/coll_coin_fl.pdf
Goes in after #98