Move hardcoded seed node address to app flag

Replaces functionality `-seed=true` with `-seed="ip:port"`
This commit is contained in:
Taylor Gerring
2015-02-02 13:04:00 -06:00
parent 57c6caf146
commit 1f4ed49b4c
7 changed files with 13 additions and 17 deletions

View File

@ -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))