mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
Modify RawDump Signature
This commit is contained in:
parent
a553762727
commit
24cd709acb
1 changed files with 3 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue