Skip to content

Commit

Permalink
fix: Remove unused parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
bingen committed May 1, 2024
1 parent ef30a4a commit 42f2bed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/src/CollateralRegistry.sol
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ contract CollateralRegistry is LiquityBase, ICollateralRegistry {
}

// Updates the `baseRate` state with math from `_getUpdatedBaseRateFromRedemption`
function _updateBaseRateAndGetRedemptionRate(IBoldToken _boldToken, uint256 _boldAmount, uint256 _totalBoldSupplyAtStart)
function _updateBaseRateAndGetRedemptionRate(uint256 _boldAmount, uint256 _totalBoldSupplyAtStart)
internal
{
uint256 newBaseRate = _getUpdatedBaseRateFromRedemption(_boldAmount, _totalBoldSupplyAtStart);
Expand Down

0 comments on commit 42f2bed

Please sign in to comment.