Skip to content

Commit

Permalink
update core/vm/interface.go
Browse files Browse the repository at this point in the history
  • Loading branch information
0xmountaintop committed Nov 29, 2023
1 parent b445d54 commit 55044bd
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion core/vm/interface.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ type StateDB interface {
GetNonce(common.Address) uint64
SetNonce(common.Address, uint64)

GetCodeHash(common.Address) common.Hash
GetKeccakCodeHash(common.Address) common.Hash
GetPoseidonCodeHash(common.Address) common.Hash
GetCode(common.Address) []byte
SetCode(common.Address, []byte)
GetCodeSize(common.Address) int
Expand Down

0 comments on commit 55044bd

Please sign in to comment.