This website works better with JavaScript.
Home
Help
Sign In
zolfa
/
tendermint
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
221
Wiki
Activity
Browse Source
Fix bug in receiveEventsRoutine error handling
pull/456/head
Jae Kwon
9 years ago
parent
8b7969d6ea
commit
1370f89864
1 changed files
with
1 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
client/ws_client.go
+ 1
- 1
client/ws_client.go
View File
@ -94,7 +94,7 @@ func (wsc *WSClient) receiveEventsRoutine() {
continue
}
if
response
.
Error
!=
""
{
wsc
.
ErrorsCh
<-
fmt
.
Errorf
(
err
.
Error
(
)
)
wsc
.
ErrorsCh
<-
fmt
.
Errorf
(
response
.
Error
)
continue
}
wsc
.
ResultsCh
<-
*
response
.
Result
Write
Preview
Loading…
Cancel
Save