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/utils/client.go | |
parent | c75d3b0ede005afc30aaa61f27bb5bbe2cf6a3f1 (diff) | |
download | go-tangerine-861add3d72bcfc6c6a8976eb82dc3e7b5288883e.tar.gz go-tangerine-861add3d72bcfc6c6a8976eb82dc3e7b5288883e.tar.zst go-tangerine-861add3d72bcfc6c6a8976eb82dc3e7b5288883e.zip |
cmd/geth: codegansta/cli package renamed to urfave/cli
Diffstat (limited to 'cmd/utils/client.go')
-rw-r--r-- | cmd/utils/client.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/utils/client.go b/cmd/utils/client.go index ec72a1a4b..cc9647580 100644 --- a/cmd/utils/client.go +++ b/cmd/utils/client.go @@ -20,9 +20,9 @@ import ( "fmt" "strings" - "github.com/codegangsta/cli" "github.com/ethereum/go-ethereum/node" "github.com/ethereum/go-ethereum/rpc" + "gopkg.in/urfave/cli.v1" ) // NewRemoteRPCClient returns a RPC client which connects to a running geth instance. |