removed old windows & added websockets to mist

This commit is contained in:
obscuren
2014-10-07 11:18:34 +02:00
parent e100aa3c6c
commit 4ed94d3d51
10 changed files with 51 additions and 100 deletions

View File

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