diff options
author | obscuren <geffobscura@gmail.com> | 2014-10-07 17:18:34 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-10-07 17:18:34 +0800 |
commit | 4ed94d3d512da28407118723e05e29f4058497e0 (patch) | |
tree | d9931e2555679a8e5c05b42b879fa43aa1dd6050 /mist/main.go | |
parent | e100aa3c6c6a9e4da858812b7ed8392ec2e3954a (diff) | |
download | dexon-4ed94d3d512da28407118723e05e29f4058497e0.tar dexon-4ed94d3d512da28407118723e05e29f4058497e0.tar.gz dexon-4ed94d3d512da28407118723e05e29f4058497e0.tar.bz2 dexon-4ed94d3d512da28407118723e05e29f4058497e0.tar.lz dexon-4ed94d3d512da28407118723e05e29f4058497e0.tar.xz dexon-4ed94d3d512da28407118723e05e29f4058497e0.tar.zst dexon-4ed94d3d512da28407118723e05e29f4058497e0.zip |
removed old windows & added websockets to mist
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 { |