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/ethereum/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/ethereum/main.go')
-rw-r--r-- | cmd/ethereum/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/ethereum/main.go b/cmd/ethereum/main.go index 288040ee7..4b16fb79f 100644 --- a/cmd/ethereum/main.go +++ b/cmd/ethereum/main.go @@ -134,7 +134,7 @@ func main() { utils.StartWebSockets(ethereum, WsPort) } - utils.StartEthereum(ethereum, UseSeed) + utils.StartEthereum(ethereum, SeedNode) if StartJsConsole { InitJsConsole(ethereum) |