feat(tracing): add GetTransientState method to StateDB interface for accessing transient state data

This commit is contained in:
kchojn 2024-10-01 10:29:24 +02:00
parent db6ae7fa12
commit d612e8b7b8

View file

@ -43,6 +43,7 @@ type StateDB interface {
GetNonce(common.Address) uint64 GetNonce(common.Address) uint64
GetCode(common.Address) []byte GetCode(common.Address) []byte
GetState(common.Address, common.Hash) common.Hash GetState(common.Address, common.Hash) common.Hash
GetTransientState(common.Address, common.Hash) common.Hash
Exist(common.Address) bool Exist(common.Address) bool
GetRefund() uint64 GetRefund() uint64
} }