diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-06 03:09:13 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-02-06 03:09:13 +0800 |
commit | 99a1551b20ebb2d8e0a40287e840c56cd55942b1 (patch) | |
tree | d4f71aa07b846255fb6a29bb76e10a860ab6b6e5 /cmd/mist/ui_lib.go | |
parent | db7c34a9df19d5a8a3a02a5e3d4cafcffa18dcb8 (diff) | |
parent | 1f4ed49b4c3400c8f567a29c70d4fb26df97f305 (diff) | |
download | dexon-99a1551b20ebb2d8e0a40287e840c56cd55942b1.tar dexon-99a1551b20ebb2d8e0a40287e840c56cd55942b1.tar.gz dexon-99a1551b20ebb2d8e0a40287e840c56cd55942b1.tar.bz2 dexon-99a1551b20ebb2d8e0a40287e840c56cd55942b1.tar.lz dexon-99a1551b20ebb2d8e0a40287e840c56cd55942b1.tar.xz dexon-99a1551b20ebb2d8e0a40287e840c56cd55942b1.tar.zst dexon-99a1551b20ebb2d8e0a40287e840c56cd55942b1.zip |
Merge pull request #287 from ethereum/system-testing
Seednode CLI param updates
Diffstat (limited to 'cmd/mist/ui_lib.go')
-rw-r--r-- | cmd/mist/ui_lib.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/ui_lib.go b/cmd/mist/ui_lib.go index 5e141bdaf..7c5802076 100644 --- a/cmd/mist/ui_lib.go +++ b/cmd/mist/ui_lib.go @@ -136,7 +136,7 @@ func (ui *UiLib) Muted(content string) { func (ui *UiLib) Connect(button qml.Object) { if !ui.connected { - ui.eth.Start(true) + ui.eth.Start(SeedNode) ui.connected = true button.Set("enabled", false) } |