Skip to content

Commit

Permalink
fix: constant
Browse files Browse the repository at this point in the history
  • Loading branch information
anna-carroll committed Aug 22, 2024
1 parent 7c6036f commit 480fc0f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions script/DeployL2.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ import {SimpleERC20} from "simple-erc20/SimpleERC20.sol";
// utils
import {Script, console2} from "forge-std/Script.sol";

address MINTER = 0x9999999999999999999999999999999999999999;
address OWNER_ONE = 0x1111111111111111111111111111111111111111;
address OWNER_TWO = 0x2222222222222222222222222222222222222222;
address constant MINTER = 0x9999999999999999999999999999999999999999;
address constant OWNER_ONE = 0x1111111111111111111111111111111111111111;
address constant OWNER_TWO = 0x2222222222222222222222222222222222222222;

contract L2Script is Script {
// deploy:
Expand Down

0 comments on commit 480fc0f

Please sign in to comment.