-
Notifications
You must be signed in to change notification settings - Fork 335
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
Moonbeam Phase 2 - Remove call filter #1082
Conversation
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.
Please update rust tests
With this PR, we can uncomment the skipped crowdloan-rewards tests |
@@ -774,7 +775,7 @@ fn claim_via_precompile() { | |||
|
|||
// Alice uses the crowdloan precompile to claim through the EVM | |||
let gas_limit = 100000u64; | |||
let gas_price: U256 = 1_000_000_000.into(); | |||
let gas_price: U256 = 100_000_000_000u64.into(); |
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.
Why did that change ?
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.
https://github.com/PureStake/moonbeam/blob/jeremy-moonbeam-phase-2-filter/runtime/moonbeam/src/lib.rs#L346
Minimum gas price is 1 GWei * SUPPLY_FACTOR (100)
What does it do?
Allow all calls for Phase 2.
What important points reviewers should know?
Is there something left for follow-up PRs?
What alternative implementations were considered?
Are there relevant PRs or issues in other repositories (Substrate, Polkadot, Frontier, Cumulus)?
What value does it bring to the blockchain users?