Skip to content
This repository was archived by the owner on Jan 10, 2026. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion contracts/BaseStrategy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -691,7 +691,7 @@ abstract contract BaseStrategy {
*/
function tendTrigger(uint256 callCostInWei) public view virtual returns (bool) {
// We usually don't need tend, but if there are positions that need
// active maintainence, overriding this function is how you would
// active maintenance, overriding this function is how you would
// signal for that.
// If your implementation uses the cost of the call in want, you can
// use uint256 callCost = ethToWant(callCostInWei);
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def arg_types(args):
args = args[0]["components"]

# NOTE: Need to filter out `name` and `internalType`,
# it isn't useful and hurts our comparisions
# it isn't useful and hurts our comparisons
return [
{k: v for k, v in arg.items() if k not in ("internalType", "name")}
for arg in args
Expand Down