-
Notifications
You must be signed in to change notification settings - Fork 461
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
Eip 3607 #3280
Eip 3607 #3280
Conversation
Looks good, requires bit more testing on actual chains |
# Conflicts: # src/Nethermind/Nethermind.Core/Specs/IReleaseSpec.cs # src/Nethermind/Nethermind.JsonRpc.Test/Modules/Eth/EthRpcModuleTests.cs # src/Nethermind/Nethermind.Specs.Test/OverridableReleaseSpec.cs # src/Nethermind/Nethermind.Specs/ChainSpecStyle/ChainParameters.cs # src/Nethermind/Nethermind.Specs/ChainSpecStyle/ChainSpecBasedSpecProvider.cs # src/Nethermind/Nethermind.Specs/Forks/00_Olympic.cs # src/Nethermind/Nethermind.Specs/Forks/01_Frontier.cs # src/Nethermind/Nethermind.Specs/Forks/02_Homestead.cs # src/Nethermind/Nethermind.Specs/Forks/03_Dao.cs # src/Nethermind/Nethermind.Specs/Forks/04_TangerineWhistle.cs # src/Nethermind/Nethermind.Specs/Forks/05_SpuriousDragon.cs # src/Nethermind/Nethermind.Specs/Forks/06_Byzantium.cs # src/Nethermind/Nethermind.Specs/Forks/07_Constantinople.cs # src/Nethermind/Nethermind.Specs/Forks/08_ConstantinopleFix.cs # src/Nethermind/Nethermind.Specs/Forks/09_Istanbul.cs # src/Nethermind/Nethermind.Specs/Forks/10_MuirGlacier.cs # src/Nethermind/Nethermind.Specs/Forks/11_Berlin.cs # src/Nethermind/Nethermind.Specs/Forks/12_London.cs # src/Nethermind/Nethermind.Specs/SystemTransactionReleaseSpec.cs
@@ -112,6 +113,8 @@ internal class ChainSpecParamsJson | |||
|
|||
public long? Eip3541Transition { get; set; } | |||
|
|||
public long? Eip3607Transition { get; set; } = 0; |
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.
Is 0 okay here? We will enable EIP3607 on all networks that don't have it on genesis spec.
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.
yes, exactly we want it to be enabled by default. In Geth they just added it without EIP flag. As we support other set of networks I want it to be disabled by a setting, but want it to be enabled by default.
This reverts commit 3affda2
Fixes | Closes | Resolves #
Changes:
Changes that enable eip3607(https://eips.ethereum.org/EIPS/eip-3607).
Types of changes
Testing
Requires testing
In case you checked yes, did you write tests??