aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-12-23 22:46:46 +0800
committerobscuren <geffobscura@gmail.com>2014-12-23 22:47:08 +0800
commitf468a9a0e236f8467012ffe35c1d8ff58e30a81a (patch)
treef2dca421cf78b99550c0ddf8c2bbce97a31ea50e /cmd/mist
parente531c6fc6cb9c54969a85eca6642561dff958a27 (diff)
downloadgo-tangerine-f468a9a0e236f8467012ffe35c1d8ff58e30a81a.tar
go-tangerine-f468a9a0e236f8467012ffe35c1d8ff58e30a81a.tar.gz
go-tangerine-f468a9a0e236f8467012ffe35c1d8ff58e30a81a.tar.bz2
go-tangerine-f468a9a0e236f8467012ffe35c1d8ff58e30a81a.tar.lz
go-tangerine-f468a9a0e236f8467012ffe35c1d8ff58e30a81a.tar.xz
go-tangerine-f468a9a0e236f8467012ffe35c1d8ff58e30a81a.tar.zst
go-tangerine-f468a9a0e236f8467012ffe35c1d8ff58e30a81a.zip
Enable websockets for mist. Closes #218
Diffstat (limited to 'cmd/mist')
-rw-r--r--cmd/mist/main.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/cmd/mist/main.go b/cmd/mist/main.go
index eaf0af0c7..5f809f1c5 100644
--- a/cmd/mist/main.go
+++ b/cmd/mist/main.go
@@ -69,6 +69,10 @@ func run() error {
utils.StartRpc(ethereum, RpcPort)
}
+ if StartWebSockets {
+ utils.StartWebSockets(ethereum)
+ }
+
gui := NewWindow(ethereum, config, clientIdentity, KeyRing, LogLevel)
gui.stdLog = stdLog