From 3ee0461cb5b6e4a5e2d287180afbdb681805a662 Mon Sep 17 00:00:00 2001 From: obscuren Date: Fri, 31 Oct 2014 10:59:17 +0100 Subject: Moved ethchain to chain --- utils/vm_env.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'utils') 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, -- cgit v1.2.3