From 253bc876dcc3780c85d44de6c2fc6ff633458506 Mon Sep 17 00:00:00 2001 From: Ferran Borreguero Date: Thu, 23 Nov 2023 09:23:22 +0100 Subject: [PATCH] Remove comment --- core/state/statedb.go | 1 - 1 file changed, 1 deletion(-) diff --git a/core/state/statedb.go b/core/state/statedb.go index d813f4be94..9dc3b9839f 100644 --- a/core/state/statedb.go +++ b/core/state/statedb.go @@ -432,7 +432,6 @@ func (s *StateDB) SetCode(addr common.Address, code []byte) { } func (s *StateDB) SetState(addr common.Address, key, value common.Hash) { - fmt.Println("- set state -") stateObject := s.GetOrNewStateObject(addr) if stateObject != nil { stateObject.SetState(s.db, key, value)