Skip to content

Commit

Permalink
fix: types error
Browse files Browse the repository at this point in the history
  • Loading branch information
0xnigir1 committed Oct 24, 2024
1 parent a180bf3 commit 8dc11aa
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -1 +1 @@
pnpm lint-staged && pnpm check-types
pnpm lint-staged && pnpm check-types --force
8 changes: 6 additions & 2 deletions packages/data-flow/test/unit/eventsFetcher.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ describe("EventsFetcher", () => {
eventName: "PoolCreated",
srcAddress: "0x1234567890123456789012345678901234567890",
logIndex: 0,
params: { contractAddress: "0x1234" },
params: { contractAddress: "0x1234", tokenAddress: "0x1234", amount: 1000 },
transactionFields: { hash: "0x1234", transactionIndex: 0 },
},
{
Expand All @@ -38,7 +38,11 @@ describe("EventsFetcher", () => {
eventName: "PoolCreated",
srcAddress: "0x1234567890123456789012345678901234567890",
logIndex: 0,
params: { contractAddress: "0x1234" },
params: {
contractAddress: "0x1234",
tokenAddress: "0x1234",
amount: 1000,
},
transactionFields: { hash: "0x1234", transactionIndex: 1 },
},
];
Expand Down

0 comments on commit 8dc11aa

Please sign in to comment.