aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/main.go
diff options
context:
space:
mode:
authorTaylor Gerring <taylor.gerring@gmail.com>2015-03-10 00:04:38 +0800
committerTaylor Gerring <taylor.gerring@gmail.com>2015-03-10 00:04:38 +0800
commit9723191b19f6ddc12f0c3376ede7529b2d72e6a2 (patch)
tree8b36eac22c0546f89185625ebec5a979750d869b /cmd/mist/main.go
parentfb23a0cfe06b52919107879e646e7d9b066acb0e (diff)
downloadgo-tangerine-9723191b19f6ddc12f0c3376ede7529b2d72e6a2.tar
go-tangerine-9723191b19f6ddc12f0c3376ede7529b2d72e6a2.tar.gz
go-tangerine-9723191b19f6ddc12f0c3376ede7529b2d72e6a2.tar.bz2
go-tangerine-9723191b19f6ddc12f0c3376ede7529b2d72e6a2.tar.lz
go-tangerine-9723191b19f6ddc12f0c3376ede7529b2d72e6a2.tar.xz
go-tangerine-9723191b19f6ddc12f0c3376ede7529b2d72e6a2.tar.zst
go-tangerine-9723191b19f6ddc12f0c3376ede7529b2d72e6a2.zip
Undo client_version changes
Diffstat (limited to 'cmd/mist/main.go')
-rw-r--r--cmd/mist/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/mist/main.go b/cmd/mist/main.go
index 0ece20d2c..c9a07bfde 100644
--- a/cmd/mist/main.go
+++ b/cmd/mist/main.go
@@ -28,8 +28,8 @@ import (
"github.com/ethereum/go-ethereum/cmd/utils"
"github.com/ethereum/go-ethereum/eth"
- "github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/logger"
+ "github.com/ethereum/go-ethereum/p2p"
"github.com/ethereum/go-ethereum/ui/qt/webengine"
"github.com/obscuren/qml"
)
@@ -52,7 +52,7 @@ func run() error {
config := utils.InitConfig(VmType, ConfigFile, Datadir, "ETH")
ethereum, err := eth.New(&eth.Config{
- Name: ethutil.MakeVersion(ClientIdentifier, Version),
+ Name: p2p.MakeName(ClientIdentifier, Version),
KeyStore: KeyStore,
DataDir: Datadir,
LogFile: LogFile,