forked from TrueCloudLab/neoneo-go
rpcclient: adjust WS waiter error formatting
Follow the other errors formatting style.
This commit is contained in:
parent
bd67fe5371
commit
3f122fd591
1 changed files with 1 additions and 1 deletions
|
@ -222,7 +222,7 @@ func (w *EventWaiter) WaitAny(ctx context.Context, vub uint32, hashes ...util.Ui
|
||||||
if wsWaitErr != nil {
|
if wsWaitErr != nil {
|
||||||
res, waitErr = w.polling.WaitAny(ctx, vub, hashes...)
|
res, waitErr = w.polling.WaitAny(ctx, vub, hashes...)
|
||||||
if waitErr != nil {
|
if waitErr != nil {
|
||||||
waitErr = fmt.Errorf("WS waiter error: %w, simple waiter error: %v", wsWaitErr, waitErr)
|
waitErr = fmt.Errorf("WS waiter error: %w; simple waiter error: %v", wsWaitErr, waitErr)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
|
|
Loading…
Reference in a new issue