diff options
author | obscuren <geffobscura@gmail.com> | 2014-12-23 22:46:46 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-12-23 22:47:08 +0800 |
commit | f468a9a0e236f8467012ffe35c1d8ff58e30a81a (patch) | |
tree | f2dca421cf78b99550c0ddf8c2bbce97a31ea50e /cmd/mist | |
parent | e531c6fc6cb9c54969a85eca6642561dff958a27 (diff) | |
download | go-tangerine-f468a9a0e236f8467012ffe35c1d8ff58e30a81a.tar.gz 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.go | 4 |
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 |