Skip to content

Commit

Permalink
fix: worker tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fkrause98 committed Jan 29, 2024
1 parent 8c47644 commit 9047c93
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { TokenType } from "../../../entities/token.entity";
import { unixTimeToDate } from "../../../utils/date";
import parseLog from "../../../utils/parseLog";
import { CONTRACT_INTERFACES } from "../../../constants";
import { isNativeToken } from "src/common/token";
import { isNativeToken } from "../../../../src/common/token";

export const defaultFinalizeDepositHandler: ExtractTransferHandler = {
matches: (): boolean => true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { TokenType } from "../../../entities/token.entity";
import { unixTimeToDate } from "../../../utils/date";
import parseLog from "../../../utils/parseLog";
import { CONTRACT_INTERFACES } from "../../../constants";
import { isNativeToken } from "src/common/token";
import { isNativeToken } from "../../../../src/common/token";

export const defaultTransferHandler: ExtractTransferHandler = {
matches: (log: types.Log): boolean => log.topics.length === 3,
Expand Down

0 comments on commit 9047c93

Please sign in to comment.