core/tracing: add GetCodeHash to statedb interface

This commit is contained in:
Sina Mahmoodi 2024-08-26 15:47:21 +02:00
parent 8659e68ad5
commit b4e01743ea
1 changed files with 1 additions and 0 deletions

View File

@ -41,6 +41,7 @@ type StateDB interface {
GetBalance(common.Address) *uint256.Int
GetNonce(common.Address) uint64
GetCode(common.Address) []byte
GetCodeHash(common.Address) common.Hash
GetState(common.Address, common.Hash) common.Hash
Exist(common.Address) bool
GetRefund() uint64