Skip to content

Commit

Permalink
EOF line addition
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Harvey committed Jun 5, 2023
1 parent 9dec6df commit 2d93b7d
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 16 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,4 @@ contract PositionsInvariants is BaseInvariants {
IBaseHandler(_handler).numberOfCalls("BPositionHandler.moveLiquidity")
);
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -92,5 +92,4 @@ contract RewardsInvariants is PositionsInvariants {
IBaseHandler(_handler).numberOfCalls("BRewardsHandler.stake")
);
}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,5 @@ contract PositionHandler is PositionHandlerAbstract {

// Position manager
_position = PositionManager(positions_);

}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,5 @@ abstract contract PositionHandlerAbstract is UnboundedPositionsHandler {
(tokenId_, indexes_) = _preMemorializePositions(bucketIndex_, amountToAdd_);
_memorializePositions(tokenId_, indexes_);
}
}

}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -174,5 +174,4 @@ contract RewardsHandler is UnboundedRewardsHandler, PositionHandlerAbstract, Res
indexes_ = new uint256[](1);
indexes_[0] = bucketIndex_;
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -68,4 +68,4 @@ abstract contract BasePositionsHandler is BaseERC20PoolHandler {
function getTokenIdsByActor(address actor_) public view returns(uint256[] memory) {
return tokenIdsByActor[actor_].values();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -296,4 +296,4 @@ abstract contract UnboundedPositionsHandler is BasePositionsHandler {
_ensurePoolError(err);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -95,4 +95,4 @@ abstract contract UnboundedRewardsHandler is BasePositionsHandler {
_ensurePoolError(err);
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -121,5 +121,4 @@ contract RegressionPositionManager is PositionsInvariants {
_positionHandler.redeemPositions(79335468733065507138817566659594782917024872257218805, 1889027018179489664211573893, 43578107449528230070726540147644518395094194018887636259089111851, 0);

}

}
}
Original file line number Diff line number Diff line change
Expand Up @@ -279,5 +279,4 @@ contract RegressionRewardsManager is RewardsInvariants {
_rewardsHandler.bucketTake(2, 15470539950385543111949808932971047871463497008525518386, false, 115792089237316195423570985008687907853269984665640564039457584007913129639932, 1);
_rewardsHandler.redeemPositions(115792089237316195423570985008687907853269984665640564039457584007913129639933, 2652132885321220255, 2, 1557926034);
}

}
}

0 comments on commit 2d93b7d

Please sign in to comment.