Skip to content

Commit

Permalink
fix: Invalid array length
Browse files Browse the repository at this point in the history
  • Loading branch information
0xhiroshi committed Jul 28, 2023
1 parent ac393a2 commit d617bb6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/simulation/CreateRaffleMainnet.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ contract CreateRaffleMainnet is Script, SimulationBase {
address beans = 0x3Af2A97414d1101E2107a70E7F33955da1346305;
address looks = 0xf4d2888d29D722226FafA5d9B24F9164c092421E;

IRaffleV2.Prize[] memory prizes = new IRaffleV2.Prize[](4);
IRaffleV2.Prize[] memory prizes = new IRaffleV2.Prize[](6);

prizes[0].prizeTier = 0;
prizes[0].prizeType = IRaffleV2.TokenType.ERC721;
Expand Down

0 comments on commit d617bb6

Please sign in to comment.