aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/geth
diff options
context:
space:
mode:
authorPéter Szilágyi <peterke@gmail.com>2016-06-10 15:16:20 +0800
committerGitHub <noreply@github.com>2016-06-10 15:16:20 +0800
commit63d1d145e2b2c8db4106d87767842019492e0aea (patch)
tree22eab93dbecb15cf3cc3a6d3d93a7b7371aa9e54 /cmd/geth
parentc039bb38d45d9d8efcd88e1342d35656651a8ac8 (diff)
parent861add3d72bcfc6c6a8976eb82dc3e7b5288883e (diff)
downloaddexon-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/geth')
-rw-r--r--cmd/geth/accountcmd.go2
-rw-r--r--cmd/geth/chaincmd.go2
-rw-r--r--cmd/geth/consolecmd.go2
-rw-r--r--cmd/geth/main.go2
-rw-r--r--cmd/geth/monitorcmd.go2
-rw-r--r--cmd/geth/usage.go2
6 files changed, 6 insertions, 6 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 (
diff --git a/cmd/geth/chaincmd.go b/cmd/geth/chaincmd.go
index 4f47de5d7..3355b7a6a 100644
--- a/cmd/geth/chaincmd.go
+++ b/cmd/geth/chaincmd.go
@@ -23,7 +23,6 @@ import (
"strconv"
"time"
- "github.com/codegangsta/cli"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/console"
@@ -32,6 +31,7 @@ import (
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethdb"
"github.com/ethereum/go-ethereum/logger/glog"
+ "gopkg.in/urfave/cli.v1"
)
var (
diff --git a/cmd/geth/consolecmd.go b/cmd/geth/consolecmd.go
index 8bfe27fef..cc7a40fd9 100644
--- a/cmd/geth/consolecmd.go
+++ b/cmd/geth/consolecmd.go
@@ -20,9 +20,9 @@ import (
"os"
"os/signal"
- "github.com/codegangsta/cli"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/console"
+ "gopkg.in/urfave/cli.v1"
)
var (
diff --git a/cmd/geth/main.go b/cmd/geth/main.go
index 5ff1a7368..6df16bb2c 100644
--- a/cmd/geth/main.go
+++ b/cmd/geth/main.go
@@ -28,7 +28,6 @@ import (
"strings"
"time"
- "github.com/codegangsta/cli"
"github.com/ethereum/ethash"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/common"
@@ -44,6 +43,7 @@ import (
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum/go-ethereum/release"
"github.com/ethereum/go-ethereum/rlp"
+ "gopkg.in/urfave/cli.v1"
)
const (
diff --git a/cmd/geth/monitorcmd.go b/cmd/geth/monitorcmd.go
index 5d839b5a3..7058b432f 100644
--- a/cmd/geth/monitorcmd.go
+++ b/cmd/geth/monitorcmd.go
@@ -26,11 +26,11 @@ import (
"sort"
- "github.com/codegangsta/cli"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/node"
"github.com/ethereum/go-ethereum/rpc"
"github.com/gizak/termui"
+ "gopkg.in/urfave/cli.v1"
)
var (
diff --git a/cmd/geth/usage.go b/cmd/geth/usage.go
index 01a71c1f6..e7ef9e2c7 100644
--- a/cmd/geth/usage.go
+++ b/cmd/geth/usage.go
@@ -21,9 +21,9 @@ package main
import (
"io"
- "github.com/codegangsta/cli"
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/internal/debug"
+ "gopkg.in/urfave/cli.v1"
)
// AppHelpTemplate is the test template for the default, global app help topic.