Skip to content

Commit

Permalink
fix: bigint error type
Browse files Browse the repository at this point in the history
  • Loading branch information
CalicoNino committed May 13, 2024
1 parent 67f9d2e commit b7fbec3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sdk/tx/event.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ describe("event tests", () => {
transactionHash: "",
txIndex: 0,
code: 0,
gasUsed: 0,
gasWanted: 0,
gasUsed: BigInt(0),
gasWanted: BigInt(0),
msgResponses: [],
})
expect(result).toEqual([eventToMap(wasmEvent)])
Expand Down

0 comments on commit b7fbec3

Please sign in to comment.