diff --git a/core/systemcontracts/upgrade.go b/core/systemcontracts/upgrade.go index 0ceba7cdde3..062d4590d40 100644 --- a/core/systemcontracts/upgrade.go +++ b/core/systemcontracts/upgrade.go @@ -5,7 +5,6 @@ import ( "fmt" "math/big" - "github.com/ledgerwatch/erigon-lib/chain" libcommon "github.com/ledgerwatch/erigon-lib/common" "github.com/ledgerwatch/log/v3" diff --git a/eth/stagedsync/stage_execute.go b/eth/stagedsync/stage_execute.go index 8a512eba3e2..769d7f12db2 100644 --- a/eth/stagedsync/stage_execute.go +++ b/eth/stagedsync/stage_execute.go @@ -789,7 +789,7 @@ func unwindExecutionStage(u *UnwindState, s *StageState, tx kv.RwTx, ctx context copy(address[:], k[:length.Addr]) incarnation = binary.BigEndian.Uint64(k[length.Addr:]) copy(location[:], k[length.Addr+length.Incarnation:]) - logger.Debug(fmt.Sprintf("un ch st: %x, %d, %x, %x\n", address, incarnation, location, common.Copy(v))) + logger.Trace(fmt.Sprintf("un ch st: %x, %d, %x, %x\n", address, incarnation, location, common.Copy(v))) accumulator.ChangeStorage(address, incarnation, location, common.Copy(v)) } if len(v) > 0 {