diff options
Diffstat (limited to 'utils/vm_env.go')
-rw-r--r-- | utils/vm_env.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/utils/vm_env.go b/utils/vm_env.go index 9d9bbf4ec..0a7b589ee 100644 --- a/utils/vm_env.go +++ b/utils/vm_env.go @@ -3,20 +3,20 @@ package utils import ( "math/big" - "github.com/ethereum/go-ethereum/ethchain" + "github.com/ethereum/go-ethereum/chain" "github.com/ethereum/go-ethereum/ethstate" "github.com/ethereum/go-ethereum/vm" ) type VMEnv struct { state *ethstate.State - block *ethchain.Block + block *chain.Block transactor []byte value *big.Int } -func NewEnv(state *ethstate.State, block *ethchain.Block, transactor []byte, value *big.Int) *VMEnv { +func NewEnv(state *ethstate.State, block *chain.Block, transactor []byte, value *big.Int) *VMEnv { return &VMEnv{ state: state, block: block, |