Skip to content

Commit

Permalink
fix: typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Romsters committed Dec 12, 2024
1 parent 9da055e commit 4f038a8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion e2e-tests/test/zks-apis.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ describe("zks_getAllAccountBalances", function () {
const account = RichAccounts[0].Account;
const expectedBalance = ethers.parseEther("1000000000000"); // 1_000_000_000_000 ETH
const ethAddress = "0x000000000000000000000000000000000000800a";
await provider.send("hardhat_setBalance", [account, expectedBalance._hex]);
await provider.send("hardhat_setBalance", [account, ethers.toBeHex(expectedBalance)]);

// Act
const balances = await provider.send("zks_getAllAccountBalances", [account]);
Expand Down

0 comments on commit 4f038a8

Please sign in to comment.