diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-12 03:29:07 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-03-12 03:29:07 +0800 |
commit | 485e37e889d5dd2c0461d686b122e1beb6089c16 (patch) | |
tree | f608f1e146c0e1d5da3f741741dce929d2757a0a /cmd | |
parent | 587f748d929e0c76d9b43e74d70cafb8f614fad0 (diff) | |
download | go-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.tar.gz go-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.tar.zst go-tangerine-485e37e889d5dd2c0461d686b122e1beb6089c16.zip |
Move MakeName to ethutil
Diffstat (limited to 'cmd')
-rw-r--r-- | cmd/utils/flags.go | 3 |
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(ð.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), |