Sort imports of streaming.ts

This commit is contained in:
Alex Gleason
2024-05-14 20:05:38 -05:00
parent 91a7ebc634
commit af9fb6aaa3
2 changed files with 6 additions and 6 deletions

View File

@@ -16,7 +16,7 @@ export class RelayError extends Error {
/** Throw a new RelayError if the OK message is false. */
static assert(msg: NostrRelayOK): void {
const [_, _eventId, ok, reason] = msg;
const [, , ok, reason] = msg;
if (!ok) {
throw RelayError.fromReason(reason);
}