Skip to content

Commit

Permalink
fix: bug
Browse files Browse the repository at this point in the history
  • Loading branch information
fp-crypto committed May 30, 2024
1 parent 8908ce7 commit 57c2b02
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions contracts/debtAllocators/DebtOptimizerApplicator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -87,13 +87,13 @@ contract DebtOptimizerApplicator {
if (_strategyDebtRatios[i].maxRatio == 0) {
_debtAllocator.setStrategyDebtRatio(
_strategyDebtRatios[i].strategy,
_strategyDebtRatios[i].targetRatio,
_strategyDebtRatios[i].maxRatio
_strategyDebtRatios[i].targetRatio
);
} else {
_debtAllocator.setStrategyDebtRatio(
_strategyDebtRatios[i].strategy,
_strategyDebtRatios[i].targetRatio
_strategyDebtRatios[i].targetRatio,
_strategyDebtRatios[i].maxRatio
);
}
}
Expand Down

0 comments on commit 57c2b02

Please sign in to comment.