staking test cleanup

This commit is contained in:
JulesCrown 2024-06-19 10:33:28 +02:00
parent 2b817c9331
commit 36833cab7f
10 changed files with 175 additions and 404 deletions

View file

@ -99,6 +99,10 @@ contract BaseLineLP {
if (amount1Owed > 0) IERC20(poolKey.token1).transfer(msg.sender, amount1Owed);
}
function liquidityPool() external view returns (address) {
return address(pool);
}
function setFeeDestination(address feeDestination_) external {
// TODO: add trapdoor
require(address(0) != feeDestination_, "zero addr");