diff options
author | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-28 02:40:52 +0800 |
---|---|---|
committer | Taylor Gerring <taylor.gerring@gmail.com> | 2015-01-28 02:40:52 +0800 |
commit | a38bca3438960ab1eec6a522eebc6622a1096881 (patch) | |
tree | 793c4d09e17925e99b7ede085f846220bc2867d4 /cmd/mist/main.go | |
parent | 5f50fe7a4a6218bedf78333d751b57166932464a (diff) | |
download | go-tangerine-a38bca3438960ab1eec6a522eebc6622a1096881.tar.gz go-tangerine-a38bca3438960ab1eec6a522eebc6622a1096881.tar.zst go-tangerine-a38bca3438960ab1eec6a522eebc6622a1096881.zip |
Add wsport flag to Mist
Diffstat (limited to 'cmd/mist/main.go')
-rw-r--r-- | cmd/mist/main.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/mist/main.go b/cmd/mist/main.go index eb0a80add..bcfb7f2ec 100644 --- a/cmd/mist/main.go +++ b/cmd/mist/main.go @@ -73,7 +73,7 @@ func run() error { } if StartWebSockets { - utils.StartWebSockets(ethereum) + utils.StartWebSockets(ethereum, WsPort) } gui := NewWindow(ethereum, config, ethereum.ClientIdentity().(*p2p.SimpleClientIdentity), KeyRing, LogLevel) |