Skip to content

Commit

Permalink
remove TODOs
Browse files Browse the repository at this point in the history
  • Loading branch information
wildmolasses authored and apbendi committed Feb 22, 2024
1 parent 38d893a commit c6e46f4
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions test/helpers/UniStaker.handler.sol
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,6 @@ contract UniStakerHandler is CommonBase, StdCheats, StdUtils {
ghost_rewardsNotified += _amount;
}

// TODO: distinguish between valid and invalid stake
function stake(uint256 _amount, address _delegatee, address _beneficiary)
public
countCall("stake")
Expand All @@ -101,7 +100,6 @@ contract UniStakerHandler is CommonBase, StdCheats, StdUtils {

_beneficiaries.add(_beneficiary);
_delegates.add(_delegatee);
// todo: adjust upper bound
_amount = bound(_amount, 0, 100_000_000e18);

// assume user has stake amount
Expand Down Expand Up @@ -138,7 +136,6 @@ contract UniStakerHandler is CommonBase, StdCheats, StdUtils {
ghost_stakeSum += _amount;
}

// TODO: include invalid withdrawals
function validWithdraw(uint256 _amount, uint256 _actorSeed, uint256 _actorDepositSeed)
public
countCall("validWithdraw")
Expand Down

0 comments on commit c6e46f4

Please sign in to comment.