diff --git a/core/vm/interface.go b/core/vm/interface.go index 0117099e25..77355f6d9c 100644 --- a/core/vm/interface.go +++ b/core/vm/interface.go @@ -17,19 +17,18 @@ package vm import ( + "github.com/ethereum/go-ethereum/core/state" "math/big" "github.com/ethereum/go-ethereum/common" - "github.com/ethereum/go-ethereum/core/state" "github.com/ethereum/go-ethereum/core/types" ) // StateDB is an EVM database for full state querying. type StateDB interface { + + RawDump(bool,bool,bool) state.Dump CreateAccount(common.Address) - - RawDump() state.Dump - SubBalance(common.Address, *big.Int) AddBalance(common.Address, *big.Int) GetBalance(common.Address) *big.Int