We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 823f5f2 commit b649d11Copy full SHA for b649d11
test/FillUtils.ts
@@ -1,6 +1,6 @@
1
import { DepositWithBlock, FillType, FillWithBlock } from "../src/interfaces";
2
import { bnOne, bnZero, toBN } from "../src/utils";
3
-import { ZERO_ADDRESS } from "../src/constants";
+import { ZERO_ADDRESS, ZERO_BYTES } from "../src/constants";
4
import { originChainId, destinationChainId, repaymentChainId } from "./constants";
5
import {
6
createSpyLogger,
@@ -40,8 +40,8 @@ describe("FillUtils", function () {
40
inputToken: ZERO_ADDRESS,
41
outputAmount: toBN(100),
42
outputToken: ZERO_ADDRESS,
43
- message: "0x",
44
- messageHash: "0x",
+ message: ZERO_BYTES,
+ messageHash: ZERO_BYTES,
45
quoteTimestamp: 0,
46
recipient: ZERO_ADDRESS,
47
updatedRecipient: ZERO_ADDRESS,
0 commit comments