Skip to content

Commit

Permalink
remove gas test
Browse files Browse the repository at this point in the history
  • Loading branch information
trmid authored Sep 12, 2023
1 parent 03fb1f8 commit f292c68
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions test/PrizePool.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -1238,10 +1238,7 @@ contract PrizePoolTest is Test {
}

function claimPrize(address sender, uint8 tier, uint32 prizeIndex) public returns (uint256) {
uint256 gas = gasleft();
uint256 res = claimPrize(sender, tier, prizeIndex, 0, address(this));
console2.log("claimPrize gas: ", gas - gasleft());
return res;
return claimPrize(sender, tier, prizeIndex, 0, address(this));
}

function claimPrize(
Expand Down

0 comments on commit f292c68

Please sign in to comment.