Skip to content

Commit 3a56d0a

Browse files
authored
Fix error (#321)
1 parent 0d3f030 commit 3a56d0a

File tree

1 file changed

+1
-1
lines changed
  • third_party/pyth/multisig-wh-message-builder/src

1 file changed

+1
-1
lines changed

third_party/pyth/multisig-wh-message-builder/src/util.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ async function send(
9090
);
9191
// @ts-ignore -- TransportStatusError is a constructor Function, not a Class
9292
if (response.length !== 2)
93-
throw new TransportStatusError(StatusCodes.INCORRECT_DATA);
93+
throw TransportStatusError(StatusCodes.INCORRECT_DATA);
9494

9595
p2 |= P2_EXTEND;
9696
offset += MAX_PAYLOAD;

0 commit comments

Comments
 (0)