From 1842330d55dcf7b7a864ee5d7ac0c6765abc47f4 Mon Sep 17 00:00:00 2001 From: Andrew Ashikhmin <34320705+yperbasis@users.noreply.github.com> Date: Fri, 14 Jul 2023 09:15:15 +0200 Subject: [PATCH] Fix Gnosis sync from scratch (#7890) Fix an issue with historical block execution introduced by PR #7727 --- consensus/aura/aura.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/consensus/aura/aura.go b/consensus/aura/aura.go index fd95b0df0..3f298eb8e 100644 --- a/consensus/aura/aura.go +++ b/consensus/aura/aura.go @@ -642,7 +642,7 @@ func (c *AuRa) Initialize(config *chain.Config, chain consensus.ChainHeaderReade } syscall := func(addr libcommon.Address, data []byte) ([]byte, error) { - return syscallCustom(addr, data, state, header, true) + return syscallCustom(addr, data, state, header, false /* constCall */) } c.certifierLock.Lock() if c.cfg.Registrar != nil && c.certifier == nil && config.IsLondon(blockNum) {