diff options
author | Bas van Kervel <bas@ethdev.com> | 2016-06-09 17:44:42 +0800 |
---|---|---|
committer | Bas van Kervel <bas@ethdev.com> | 2016-06-09 21:37:13 +0800 |
commit | 861add3d72bcfc6c6a8976eb82dc3e7b5288883e (patch) | |
tree | 88b062eafe5acc8ed8028d04638ed8bf2e7acfaf /cmd/geth/accountcmd.go | |
parent | c75d3b0ede005afc30aaa61f27bb5bbe2cf6a3f1 (diff) | |
download | dexon-861add3d72bcfc6c6a8976eb82dc3e7b5288883e.tar.gz dexon-861add3d72bcfc6c6a8976eb82dc3e7b5288883e.tar.zst dexon-861add3d72bcfc6c6a8976eb82dc3e7b5288883e.zip |
cmd/geth: codegansta/cli package renamed to urfave/cli
Diffstat (limited to 'cmd/geth/accountcmd.go')
-rw-r--r-- | cmd/geth/accountcmd.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/geth/accountcmd.go b/cmd/geth/accountcmd.go index 2c2308514..fd5a4bcd4 100644 --- a/cmd/geth/accountcmd.go +++ b/cmd/geth/accountcmd.go @@ -20,13 +20,13 @@ import ( "fmt" "io/ioutil" - "github.com/codegangsta/cli" "github.com/ethereum/go-ethereum/accounts" "github.com/ethereum/go-ethereum/cmd/utils" "github.com/ethereum/go-ethereum/console" "github.com/ethereum/go-ethereum/crypto" "github.com/ethereum/go-ethereum/logger" "github.com/ethereum/go-ethereum/logger/glog" + "gopkg.in/urfave/cli.v1" ) var ( |