Skip to content

Commit

Permalink
Update format
Browse files Browse the repository at this point in the history
  • Loading branch information
Phanco committed Jun 21, 2024
1 parent 450e770 commit ab7909e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions test/invariant/L1LiskTokenInvariants.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ contract L1LiskTokenInvariants is Test {
// #1 address gets 1 portion, #2 gets 2 portions etc.
l1LiskToken.transfer(balanceHolder, l1LiskToken.totalSupply() * i / totalPortions);

// Last address gets the rest of the balances, to ensure address(this) has no balance left because of rounding
// Last address gets the rest of the balances, to ensure address(this) has no balance left because of
// rounding
if (i == l1LiskTokenHandler.numOfAddresses()) {
l1LiskToken.transfer(balanceHolder, l1LiskToken.balanceOf(address(this)));
}
}


// add the handler selectors to the fuzzing targets
bytes4[] memory selectors = new bytes4[](1);
selectors[0] = L1LiskTokenHandler.burnFrom.selector;
Expand Down
2 changes: 1 addition & 1 deletion test/invariant/handler/L2ClaimHandler.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ pragma solidity 0.8.23;

import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import { Strings } from "@openzeppelin/contracts/utils/Strings.sol";
import { Test, stdJson } from "forge-std/Test.sol";
import { Test, stdJson } from "forge-std/Test.sol";
import { L2Claim, ED25519Signature, MultisigKeys } from "src/L2/L2Claim.sol";
import { L2ClaimHelper, MerkleTreeLeaf, Signature, MerkleLeaves } from "test/L2/helper/L2ClaimHelper.sol";

Expand Down

0 comments on commit ab7909e

Please sign in to comment.