Disable sealing engine if startup fork is greater than Merge Fork
This commit is contained in:
parent
5754a9079b
commit
e2bf6e153b
|
@ -333,7 +333,7 @@ proc localServices(nimbus: NimbusNode, conf: NimbusConf,
|
|||
)
|
||||
nimbus.graphqlServer.start()
|
||||
|
||||
if conf.engineSigner != ZERO_ADDRESS:
|
||||
if conf.engineSigner != ZERO_ADDRESS and not com.forkGTE(MergeFork):
|
||||
let res = nimbus.ctx.am.getAccount(conf.engineSigner)
|
||||
if res.isErr:
|
||||
error "Failed to get account",
|
||||
|
|
Loading…
Reference in New Issue