*Skip if relay has an error
This commit is contained in:
parent
be2531ec99
commit
5366f85c35
|
@ -103,6 +103,9 @@ export default class WisdomRpcQuery extends RpcQueryBase {
|
||||||
|
|
||||||
for (const relay in this._response?.relays) {
|
for (const relay in this._response?.relays) {
|
||||||
const resp = this._response?.relays[relay];
|
const resp = this._response?.relays[relay];
|
||||||
|
if (resp?.error) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (
|
if (
|
||||||
validateTimestampedResponse(
|
validateTimestampedResponse(
|
||||||
b4a.from(relay, "hex") as Buffer,
|
b4a.from(relay, "hex") as Buffer,
|
||||||
|
|
Loading…
Reference in New Issue