This commit is contained in:
2026-02-24 16:44:47 +08:00
parent ae33e0ec07
commit e39529984d
7 changed files with 13 additions and 5 deletions

View File

@@ -640,7 +640,7 @@ contract Lending is
supplyPerSecondInterestRateSlopeHigh,
supplyPerSecondInterestRateBase
);
// 转换为年化利率APY
//APR
return perSecondRate * 31536000; // SECONDS_PER_YEAR
}
@@ -655,7 +655,7 @@ contract Lending is
borrowPerSecondInterestRateSlopeHigh,
borrowPerSecondInterestRateBase
);
// 转换为年化利率APY
//APR
return perSecondRate * 31536000; // SECONDS_PER_YEAR
}