From 24cd709acb8310132c4ff29295238958f6651210 Mon Sep 17 00:00:00 2001 From: suhasagg Date: Fri, 26 Jul 2019 14:18:28 +0530 Subject: [PATCH] Modify RawDump Signature --- core/vm/interface.go | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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