diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-03 03:04:00 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-02-03 03:04:00 +0800 |
commit | 1f4ed49b4c3400c8f567a29c70d4fb26df97f305 (patch) | |
tree | f16968a25055aeaee6c4a3abed731f40415f3884 /cmd/mist/main.go | |
parent | 57c6caf146a815f29b0698b8f67c827a254d7836 (diff) | |
download | dexon-1f4ed49b4c3400c8f567a29c70d4fb26df97f305.tar dexon-1f4ed49b4c3400c8f567a29c70d4fb26df97f305.tar.gz dexon-1f4ed49b4c3400c8f567a29c70d4fb26df97f305.tar.bz2 dexon-1f4ed49b4c3400c8f567a29c70d4fb26df97f305.tar.lz dexon-1f4ed49b4c3400c8f567a29c70d4fb26df97f305.tar.xz dexon-1f4ed49b4c3400c8f567a29c70d4fb26df97f305.tar.zst dexon-1f4ed49b4c3400c8f567a29c70d4fb26df97f305.zip |
Move hardcoded seed node address to app flag
Replaces functionality `-seed=true` with `-seed="ip:port"`
Diffstat (limited to 'cmd/mist/main.go')
-rw-r--r-- | cmd/mist/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/main.go b/cmd/mist/main.go index a66288a3e..66872a241 100644 --- a/cmd/mist/main.go +++ b/cmd/mist/main.go @@ -84,7 +84,7 @@ func run() error { utils.RegisterInterrupt(func(os.Signal) { gui.Stop() }) - go utils.StartEthereum(ethereum, UseSeed) + go utils.StartEthereum(ethereum, SeedNode) fmt.Println("ETH stack took", time.Since(tstart)) |