From 2b0c1818bad1d616c8accedfb9f31236e5022340 Mon Sep 17 00:00:00 2001 From: Darioush Jalali Date: Fri, 20 Sep 2024 08:17:48 -0400 Subject: [PATCH] add log --- core/evm.go | 1 + 1 file changed, 1 insertion(+) 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) }