Skip to content

Commit

Permalink
Removed some extra whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
asselstine committed Apr 17, 2024
1 parent 8af819c commit dcf76c6
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/PrizePool.sol
Expand Up @@ -826,7 +826,6 @@ contract PrizePool is TieredLiquidityDistributor {
uint24 shutdownDrawId = getDrawIdPriorToShutdown();
uint24 startDrawIdInclusive = computeRangeStartDrawIdInclusive(shutdownDrawId, grandPrizePeriodDraws);


(uint256 vaultContrib, uint256 totalContrib) = _getVaultShares(
_vault,
startDrawIdInclusive,
Expand All @@ -840,7 +839,6 @@ contract PrizePool is TieredLiquidityDistributor {
shutdownDrawId
);


if (_vaultTwabTotalSupply == 0) {
return ShutdownPortion(0, 0);
}
Expand All @@ -859,7 +857,6 @@ contract PrizePool is TieredLiquidityDistributor {
return 0;
}


Observation memory withdrawalObservation = _withdrawalObservations[_vault][_account];
ShutdownPortion memory shutdownPortion;
uint256 balance;
Expand All @@ -877,7 +874,6 @@ contract PrizePool is TieredLiquidityDistributor {
return 0;
}


// if there are new rewards
// current "draw id to award" observation - last withdraw observation
Observation memory newestObs = _totalAccumulator.newestObservation();
Expand Down

0 comments on commit dcf76c6

Please sign in to comment.