diff options
Diffstat (limited to 'mist/flags.go')
-rw-r--r-- | mist/flags.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mist/flags.go b/mist/flags.go index 5cf34c740..68accf1bc 100644 --- a/mist/flags.go +++ b/mist/flags.go @@ -12,7 +12,7 @@ import ( "bitbucket.org/kardianos/osext" "github.com/ethereum/eth-go/ethlog" - "github.com/ethereum/eth-go/ethvm" + "github.com/ethereum/eth-go/vm" ) var ( @@ -106,7 +106,7 @@ func Init() { flag.Parse() - if VmType >= int(ethvm.MaxVmTy) { + if VmType >= int(vm.MaxVmTy) { log.Fatal("Invalid VM type ", VmType) } } |