Skip to content

Commit

Permalink
remove comment
Browse files Browse the repository at this point in the history
  • Loading branch information
trmid committed Sep 20, 2023
1 parent 478e986 commit 149a355
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/PrizePool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ contract PrizePool is TieredLiquidityDistributor, Ownable {

// co-locate to save gas
claimCount++;
_totalWithdrawn = SafeCast.toUint160(_totalWithdrawn + amount); // TODO: check if we need to change this to tierLiquidity.prizeSize instead of amount to account for allocated, but not withdrawn claim fees
_totalWithdrawn = SafeCast.toUint160(_totalWithdrawn + amount);

emit ClaimedPrize(
msg.sender,
Expand Down

0 comments on commit 149a355

Please sign in to comment.