-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[WIP] Add support for Moonriver #95
Merged
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
80ab0b7
Draft support for Moonriver
crystalin b028dbe
Merge branch 'master' into crystalin-moonriver
crystalin ed87ac2
Better storage modification for Moonriver
crystalin d0887e4
Merge branch 'master' into crystalin-moonriver
crystalin d9775a1
temp fix for default storage issue
crystalin cb8349c
Merge branch 'master' into crystalin-moonriver
crystalin 3db2d02
removes notFirstBlock
crystalin 8c276a7
remove unnecessary randomness storage modification
crystalin 72fc9b3
Adds RT2100 Dev image in authorized upgrade
crystalin 105c12e
Merge branch 'master' into crystalin-moonriver
crystalin c546ccf
Better support for nmbs engine
crystalin cad8131
Merge branch 'master' into crystalin-moonriver
crystalin 2045c72
fix missing import
crystalin e80a133
lint
crystalin 33d6f98
Merge branch 'master' into crystalin-moonriver
crystalin 1c7bce6
Merge branch 'master' into crystalin-moonriver
crystalin da111ca
Update src/blockchain/txpool.ts
83e760b
Merge branch 'master' into crystalin-moonriver
crystalin c86d47a
Fix inherents
crystalin 0d897fe
Removes extra storage push
crystalin 4d77abf
Better file split
crystalin ec0772f
fix e2e imports
crystalin c917476
Merge branch 'master' into crystalin-moonriver
crystalin File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains 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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@xlc not sure what we could do here. Ideally, the signature should be mocked too but quickly looking at the randomness pallet I don't see much how this could be done.
A temporary solution is to remove the NotFirstBlock but it needs to be pallet specific and also break support for randomness.
Any idea ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
how does the randomness pallet verify the VRF? if that's using host function than we can mock it. otherwise I can see few options:
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So it checks the NotFirstBlock there https://github.com/PureStake/moonbeam/blob/master/pallets/randomness/src/lib.rs#L294
And the verification is (few lines under) pointing to https://github.com/PureStake/moonbeam/blob/master/pallets/randomness/src/vrf.rs#L32