aboutsummaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-12 03:29:07 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-12 03:29:07 +0800
commit485e37e889d5dd2c0461d686b122e1beb6089c16 (patch)
treef608f1e146c0e1d5da3f741741dce929d2757a0a /cmd
parent587f748d929e0c76d9b43e74d70cafb8f614fad0 (diff)
downloadgo-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.tar
go-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.tar.gz
go-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.tar.bz2
go-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.tar.lz
go-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.tar.xz
go-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.tar.zst
go-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.zip
Move MakeName to ethutil
Diffstat (limited to 'cmd')
-rw-r--r--cmd/utils/flags.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go
index 5c188a41e..990fb08e0 100644
--- a/cmd/utils/flags.go
+++ b/cmd/utils/flags.go
@@ -18,7 +18,6 @@ import (
"github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/logger"
- "github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/p2p/nat"
"github.com/ethereum/go-ethereum/rpc"
"github.com/ethereum/go-ethereum/xeth"
@@ -194,7 +193,7 @@ func GetNodeKey(ctx *cli.Context) (key *ecdsa.PrivateKey) {
func GetEthereum(clientID, version string, ctx *cli.Context) (*eth.Ethereum, error) {
return eth.New(&eth.Config{
- Name: p2p.MakeName(clientID, version),
+ Name: ethutil.MakeName(clientID, version),
DataDir: ctx.GlobalString(DataDirFlag.Name),
LogFile: ctx.GlobalString(LogFileFlag.Name),
LogLevel: ctx.GlobalInt(LogLevelFlag.Name),