diff options
author | Bas van Kervel <bas@ethdev.com> | 2016-06-09 17:44:42 +0800 |
---|---|---|
committer | Péter Szilágyi <peterke@gmail.com> | 2016-06-14 22:11:59 +0800 |
commit | c89fa789b79bdbe25c703aa3d3bf753070682db7 (patch) | |
tree | 7cfb970dc1c1948a7b7acc3928980c19746dbf2d /cmd/evm | |
parent | 39f1d909d185816bade35c7336364fe5e842c7c5 (diff) | |
download | go-tangerine-c89fa789b79bdbe25c703aa3d3bf753070682db7.tar go-tangerine-c89fa789b79bdbe25c703aa3d3bf753070682db7.tar.gz go-tangerine-c89fa789b79bdbe25c703aa3d3bf753070682db7.tar.bz2 go-tangerine-c89fa789b79bdbe25c703aa3d3bf753070682db7.tar.lz go-tangerine-c89fa789b79bdbe25c703aa3d3bf753070682db7.tar.xz go-tangerine-c89fa789b79bdbe25c703aa3d3bf753070682db7.tar.zst go-tangerine-c89fa789b79bdbe25c703aa3d3bf753070682db7.zip |
[release/1.4.7] cmd/geth: codegansta/cli package renamed to urfave/cli
(cherry picked from commit 861add3d72bcfc6c6a8976eb82dc3e7b5288883e)
Diffstat (limited to 'cmd/evm')
-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 ( |