Move p2p.MakeName to ethutil.MakeVersion

This commit is contained in:
Taylor Gerring
2015-03-02 13:21:57 -06:00
parent fb2488235a
commit e7b33e9ae7
4 changed files with 8 additions and 13 deletions

View File

@@ -31,7 +31,6 @@ import (
"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/state"
)
@@ -62,7 +61,7 @@ func main() {
utils.InitConfig(VmType, ConfigFile, Datadir, "ETH")
ethereum, err := eth.New(&eth.Config{
Name: p2p.MakeName(ClientIdentifier, Version),
Name: ethutil.MakeVersion(ClientIdentifier, Version),
KeyStore: KeyStore,
DataDir: Datadir,
LogFile: LogFile,