diff --git a/core/evm.go b/core/evm.go index 340db6c36d..107767cf48 100644 --- a/core/evm.go +++ b/core/evm.go @@ -55,6 +55,7 @@ type StateDbAP1 struct { } func (s *StateDbAP1) GetCommittedState(addr common.Address, key common.Hash) common.Hash { + log.Info("GetCommittedState (ap1)", "addr", addr, "key", key) state.NormalizeStateKey(&key) return s.StateDB.GetCommittedState(addr, key) }