aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/utils
diff options
context:
space:
mode:
authorBas van Kervel <bas@ethdev.com>2016-06-09 17:44:42 +0800
committerPéter Szilágyi <peterke@gmail.com>2016-06-14 22:11:59 +0800
commitc89fa789b79bdbe25c703aa3d3bf753070682db7 (patch)
tree7cfb970dc1c1948a7b7acc3928980c19746dbf2d /cmd/utils
parent39f1d909d185816bade35c7336364fe5e842c7c5 (diff)
downloadgo-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/utils')
-rw-r--r--cmd/utils/client.go2
-rw-r--r--cmd/utils/customflags.go2
-rw-r--r--cmd/utils/flags.go2
3 files changed, 3 insertions, 3 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.
diff --git a/cmd/utils/customflags.go b/cmd/utils/customflags.go
index 4450065c1..5cbccfe98 100644
--- a/cmd/utils/customflags.go
+++ b/cmd/utils/customflags.go
@@ -24,7 +24,7 @@ import (
"path"
"strings"
- "github.com/codegangsta/cli"
+ "gopkg.in/urfave/cli.v1"
)
// Custom type which is registered in the flags library which cli uses for
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index c476e1c77..d2ba42801 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -30,7 +30,6 @@ import (
"strings"
"time"
- "github.com/codegangsta/cli"
"github.com/ethereum/ethash"
"github.com/ethereum/go-ethereum/accounts"
"github.com/ethereum/go-ethereum/common"
@@ -51,6 +50,7 @@ import (
"github.com/ethereum/go-ethereum/release"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/whisper"
+ "gopkg.in/urfave/cli.v1"
)
func init() {