diff options
Diffstat (limited to 'ethereum')
-rw-r--r-- | ethereum/flags.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ethereum/flags.go b/ethereum/flags.go index 7924dd7bf..af7b3365a 100644 --- a/ethereum/flags.go +++ b/ethereum/flags.go @@ -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) } |