Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavBreadless committed Jan 24, 2025
1 parent 3158273 commit ab75713
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions system-contracts/test/DefaultAccount.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,10 @@ describe("DefaultAccount tests", function () {
mockERC20 = (await deployContract("MockContract")) as MockContract;

paymasterFlowIface = new ethers.utils.Interface((await loadArtifact("IPaymasterFlow")).abi);
ERC20Iface = new ethers.utils.Interface(
(await loadArtifact("@openzeppelin/contracts-v4/token/ERC20/IERC20.sol:IERC20")).abi
);
ERC20Iface = new ethers.utils.Interface([
"function approve(address to, uint256 amount) external view",
"function allowance(address from, address to) external view",
]);

bootloaderAccount = await ethers.getImpersonatedSigner(TEST_BOOTLOADER_FORMAL_ADDRESS);
});
Expand Down

0 comments on commit ab75713

Please sign in to comment.