diff options
Diffstat (limited to 'mist/main.go')
-rw-r--r-- | mist/main.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/mist/main.go b/mist/main.go index 6e4554352..a860f7527 100644 --- a/mist/main.go +++ b/mist/main.go @@ -12,7 +12,7 @@ import ( const ( ClientIdentifier = "Mist" - Version = "0.6.7" + Version = "0.6.8" ) var ethereum *eth.Ethereum @@ -80,6 +80,10 @@ func main() { utils.HandleInterrupt() + if StartWebSockets { + utils.StartWebSockets(ethereum) + } + // we need to run the interrupt callbacks in case gui is closed // this skips if we got here by actual interrupt stopping the GUI if !interrupted { |