Modify RawDump Signature

This commit is contained in:
suhasagg 2019-07-26 14:18:28 +05:30
parent a553762727
commit 24cd709acb

View file

@ -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