When tend with no-op it could be this function below just doesn't do anything. It can be deleted instead for saving more gas
// Example tend is a no-op which returns the values, could also just revert
function _tend() internal override returns (TokenAmount[] memory tended) {
revert("no op");
}
Title : : Using short reason string can be used for saving more gas
Every reason string takes at least 32 bytes. Use short reason strings that fits in 32 bytes or it will become more expensive.
Tool Used
Manual Review
Occurances
contracts/MyStrategy.sol#L186 "You have to wait for unlock or have to manually rebalance out of it"
When
tend
with no-op it could be this function below just doesn't do anything. It can be deleted instead for saving more gasEvery reason string takes at least 32 bytes. Use short reason strings that fits in 32 bytes or it will become more expensive.
Tool Used
Manual Review
Occurances