Skip to content

Commit

Permalink
fixed chainid bug in deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobHomanics committed Dec 8, 2023
1 parent 45bebe1 commit cffd6b8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract DeployRepTokensInstanceWithData is Script {
address[] memory admins = new address[](1);
admins[0] = deployer;

if (block.chainId == 31337) {
if (block.chainid == 31337) {
vm.startBroadcast(
0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
);
Expand Down

0 comments on commit cffd6b8

Please sign in to comment.