Reflect changes to the eth/vm

This commit is contained in:
obscuren
2014-10-18 13:31:04 +02:00
parent 6956b5104f
commit 82a2e4fe28
3 changed files with 12 additions and 12 deletions

View File

@@ -9,7 +9,7 @@ import (
"path"
"github.com/ethereum/eth-go/ethlog"
"github.com/ethereum/eth-go/ethvm"
"github.com/ethereum/eth-go/vm"
)
var (
@@ -95,7 +95,7 @@ func Init() {
flag.Parse()
if VmType >= int(ethvm.MaxVmTy) {
if VmType >= int(vm.MaxVmTy) {
log.Fatal("Invalid VM type ", VmType)
}