diff options
Diffstat (limited to 'core/vm_env.go')
-rw-r--r-- | core/vm_env.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/core/vm_env.go b/core/vm_env.go index 17686b28f..6332abc39 100644 --- a/core/vm_env.go +++ b/core/vm_env.go @@ -9,13 +9,13 @@ import ( ) type VMEnv struct { - state *state.State + state *state.StateDB block *types.Block tx *types.Transaction depth int } -func NewEnv(state *state.State, tx *types.Transaction, block *types.Block) *VMEnv { +func NewEnv(state *state.StateDB, tx *types.Transaction, block *types.Block) *VMEnv { return &VMEnv{ state: state, block: block, @@ -31,7 +31,7 @@ func (self *VMEnv) Time() int64 { return self.block.Time } func (self *VMEnv) Difficulty() *big.Int { return self.block.Difficulty } func (self *VMEnv) BlockHash() []byte { return self.block.Hash() } func (self *VMEnv) Value() *big.Int { return self.tx.Value } -func (self *VMEnv) State() *state.State { return self.state } +func (self *VMEnv) State() *state.StateDB { return self.state } func (self *VMEnv) GasLimit() *big.Int { return self.block.GasLimit } func (self *VMEnv) Depth() int { return self.depth } func (self *VMEnv) SetDepth(i int) { self.depth = i } |