Reflect changed to eth/vm

This commit is contained in:
obscuren 2014-10-18 13:33:02 +02:00
parent 20c742e474
commit 3ea0e904ad
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@ import (
"github.com/ethereum/eth-go/ethstate"
"github.com/ethereum/eth-go/ethutil"
"github.com/ethereum/eth-go/ethvm"
"github.com/ethereum/eth-go/vm"
)
type Env struct {
@ -56,9 +56,9 @@ func RunVm(state *ethstate.State, env, exec map[string]string) ([]byte, *big.Int
caller := state.GetOrNewStateObject(FromHex(exec["caller"]))
caller.Balance = ethutil.Big(exec["value"])
vm := ethvm.New(NewEnvFromMap(state, env, exec), ethvm.DebugVmTy)
evm := vm.New(NewEnvFromMap(state, env, exec), vm.DebugVmTy)
execution := ethvm.NewExecution(vm, address, FromHex(exec["data"]), ethutil.Big(exec["gas"]), ethutil.Big(exec["gasPrice"]), ethutil.Big(exec["value"]))
execution := vm.NewExecution(evm, address, FromHex(exec["data"]), ethutil.Big(exec["gas"]), ethutil.Big(exec["gasPrice"]), ethutil.Big(exec["value"]))
ret, err := execution.Exec(address, caller)
return ret, execution.Gas, err

View File

@ -1,4 +1,4 @@
package ethvm
package vm
import (
"bytes"