Skip to content

Commit

Permalink
rates fix
Browse files Browse the repository at this point in the history
  • Loading branch information
0xripleys committed Aug 15, 2023
1 parent 11fef04 commit 220e51f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion solend-sdk/src/core/utils/rates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const calculateBorrowAPR = (reserve: Reserve) => {
reserve.config.optimalUtilizationRate / 100
);
const maxUtilizationRate = new BigNumber(
reserve.config.maxUtilizationRate
reserve.config.maxUtilizationRate / 100
);
let borrowAPR;
if (
Expand Down

0 comments on commit 220e51f

Please sign in to comment.