Makes Our New Deposit Trie The Default (#13555)

* make 4881 the default

* fix failed build
This commit is contained in:
Nishant Das
2024-01-30 13:15:52 +08:00
committed by GitHub
parent 373c853d17
commit 3ed4866eec
4 changed files with 15 additions and 9 deletions

View File

@@ -235,9 +235,10 @@ func ConfigureBeaconChain(ctx *cli.Context) error {
logEnabled(disableResourceManager)
cfg.DisableResourceManager = true
}
if ctx.IsSet(EnableEIP4881.Name) {
logEnabled(EnableEIP4881)
cfg.EnableEIP4881 = true
cfg.EnableEIP4881 = true
if ctx.IsSet(DisableEIP4881.Name) {
logEnabled(DisableEIP4881)
cfg.EnableEIP4881 = false
}
if ctx.IsSet(EnableLightClient.Name) {
logEnabled(EnableLightClient)