Skip to content

Commit b649d11

Browse files
nit: use ZERO_BYTES
Signed-off-by: james-a-morris <[email protected]>
1 parent 823f5f2 commit b649d11

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: test/FillUtils.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { DepositWithBlock, FillType, FillWithBlock } from "../src/interfaces";
22
import { bnOne, bnZero, toBN } from "../src/utils";
3-
import { ZERO_ADDRESS } from "../src/constants";
3+
import { ZERO_ADDRESS, ZERO_BYTES } from "../src/constants";
44
import { originChainId, destinationChainId, repaymentChainId } from "./constants";
55
import {
66
createSpyLogger,
@@ -40,8 +40,8 @@ describe("FillUtils", function () {
4040
inputToken: ZERO_ADDRESS,
4141
outputAmount: toBN(100),
4242
outputToken: ZERO_ADDRESS,
43-
message: "0x",
44-
messageHash: "0x",
43+
message: ZERO_BYTES,
44+
messageHash: ZERO_BYTES,
4545
quoteTimestamp: 0,
4646
recipient: ZERO_ADDRESS,
4747
updatedRecipient: ZERO_ADDRESS,

0 commit comments

Comments
 (0)