Commit f16810c4 authored by obscuren's avatar obscuren

added shh back in

parent 66b05433
...@@ -866,6 +866,7 @@ ApplicationWindow { ...@@ -866,6 +866,7 @@ ApplicationWindow {
model: ListModel { id: pastPeers } model: ListModel { id: pastPeers }
Component.onCompleted: { Component.onCompleted: {
pastPeers.insert(0, {text: "poc-8.ethdev.com:30303"})
/* /*
var ips = eth.pastPeers() var ips = eth.pastPeers()
for(var i = 0; i < ips.length; i++) { for(var i = 0; i < ips.length; i++) {
......
...@@ -112,7 +112,7 @@ func (gui *Gui) Start(assetPath string) { ...@@ -112,7 +112,7 @@ func (gui *Gui) Start(assetPath string) {
// Expose the eth library and the ui library to QML // Expose the eth library and the ui library to QML
context.SetVar("gui", gui) context.SetVar("gui", gui)
context.SetVar("eth", gui.uiLib) context.SetVar("eth", gui.uiLib)
//context.SetVar("shh", gui.whisper) context.SetVar("shh", gui.whisper)
// Load the main QML interface // Load the main QML interface
data, _ := ethutil.Config.Db.Get([]byte("KeyRing")) data, _ := ethutil.Config.Db.Get([]byte("KeyRing"))
......
...@@ -195,7 +195,9 @@ func (ui *UiLib) Connect(button qml.Object) { ...@@ -195,7 +195,9 @@ func (ui *UiLib) Connect(button qml.Object) {
} }
func (ui *UiLib) ConnectToPeer(addr string) { func (ui *UiLib) ConnectToPeer(addr string) {
ui.eth.SuggestPeer(addr) if err := ui.eth.SuggestPeer(addr); err != nil {
guilogger.Infoln(err)
}
} }
func (ui *UiLib) AssetPath(p string) string { func (ui *UiLib) AssetPath(p string) string {
......
...@@ -100,7 +100,11 @@ func exit(err error) { ...@@ -100,7 +100,11 @@ func exit(err error) {
func StartEthereum(ethereum *eth.Ethereum, UseSeed bool) { func StartEthereum(ethereum *eth.Ethereum, UseSeed bool) {
clilogger.Infof("Starting %s", ethereum.ClientIdentity()) clilogger.Infof("Starting %s", ethereum.ClientIdentity())
ethereum.Start(UseSeed) err := ethereum.Start(UseSeed)
if err != nil {
exit(err)
}
RegisterInterrupt(func(sig os.Signal) { RegisterInterrupt(func(sig os.Signal) {
ethereum.Stop() ethereum.Stop()
logger.Flush() logger.Flush()
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment