Skip to content

Commit

Permalink
Merge pull request #386 from liquity/fix-lower-batch-mgmt-fee
Browse files Browse the repository at this point in the history
  • Loading branch information
danielattilasimon authored Aug 28, 2024
2 parents 99b8b00 + 981bf01 commit dc32323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/BorrowerOperations.sol
Original file line number Diff line number Diff line change
Expand Up @@ -889,7 +889,7 @@ contract BorrowerOperations is LiquityBase, AddRemoveManagers, IBorrowerOperatio
batchChange.newWeightedRecordedDebt = batch.entireDebtWithoutRedistribution * batch.annualInterestRate;
batchChange.oldWeightedRecordedBatchManagementFee = batch.weightedRecordedBatchManagementFee;
batchChange.newWeightedRecordedBatchManagementFee =
batch.entireDebtWithoutRedistribution * batch.annualManagementFee;
batch.entireDebtWithoutRedistribution * _newAnnualManagementFee;

activePool.mintAggInterestAndAccountForTroveChange(batchChange, msg.sender);
}
Expand Down

0 comments on commit dc32323

Please sign in to comment.