diff options
author | Péter Szilágyi <peterke@gmail.com> | 2016-06-10 15:16:20 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-10 15:16:20 +0800 |
commit | 63d1d145e2b2c8db4106d87767842019492e0aea (patch) | |
tree | 22eab93dbecb15cf3cc3a6d3d93a7b7371aa9e54 /cmd/evm/main.go | |
parent | c039bb38d45d9d8efcd88e1342d35656651a8ac8 (diff) | |
parent | 861add3d72bcfc6c6a8976eb82dc3e7b5288883e (diff) | |
download | dexon-63d1d145e2b2c8db4106d87767842019492e0aea.tar dexon-63d1d145e2b2c8db4106d87767842019492e0aea.tar.gz dexon-63d1d145e2b2c8db4106d87767842019492e0aea.tar.bz2 dexon-63d1d145e2b2c8db4106d87767842019492e0aea.tar.lz dexon-63d1d145e2b2c8db4106d87767842019492e0aea.tar.xz dexon-63d1d145e2b2c8db4106d87767842019492e0aea.tar.zst dexon-63d1d145e2b2c8db4106d87767842019492e0aea.zip |
Merge pull request #2677 from bas-vk/cli
cmd/geth: codegansta/cli package renamed to urfave/cli
Diffstat (limited to 'cmd/evm/main.go')
-rw-r--r-- | cmd/evm/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/evm/main.go b/cmd/evm/main.go index 7d9b3a6c3..ce8e171bd 100644 --- a/cmd/evm/main.go +++ b/cmd/evm/main.go @@ -24,7 +24,6 @@ import ( "runtime" "time" - "github.com/codegangsta/cli" "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/common" "github.com/ethereum/go-ethereum/core" @@ -33,6 +32,7 @@ import ( "github.com/ethereum/go-ethereum/core/vm" "github.com/ethereum/go-ethereum/ethdb" "github.com/ethereum/go-ethereum/logger/glog" + "gopkg.in/urfave/cli.v1" ) var ( |