Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rosepuppy committed Jan 24, 2024
1 parent 0bdeaf7 commit 186cb69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion v4-client-js/src/clients/native.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1112,7 +1112,7 @@ export async function withdrawToNobleIBC(payload: string): Promise<String> {
...parsedIbcPayload.msg,
// Squid returns timeoutTimestamp as Long, but the signer expects BigInt
timeoutTimestamp: parsedIbcPayload.msg.timeoutTimestamp
? BigInt(Long.fromValue(json.msg.timeoutTimestamp).toString())
? BigInt(Long.fromValue(parsedIbcPayload.msg.timeoutTimestamp).toString())
: undefined,
},
};
Expand Down

0 comments on commit 186cb69

Please sign in to comment.