Skip to content

Commit

Permalink
fix: Fix error from merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Jan 5, 2022
1 parent cd566d1 commit b0bea4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/protocol/pool/PoolConfigurator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ contract PoolConfigurator is VersionedInitializable, IPoolConfigurator {
override
onlyRiskOrPoolAdmins
{
require(fee <= PercentageMath.PERCENTAGE_FACTOR, Errors.INVALID_LIQUIDATION_PROTOCOL_FEE);
require(newFee <= PercentageMath.PERCENTAGE_FACTOR, Errors.INVALID_LIQUIDATION_PROTOCOL_FEE);
DataTypes.ReserveConfigurationMap memory currentConfig = _pool.getConfiguration(asset);
uint256 oldFee = currentConfig.getLiquidationProtocolFee();
currentConfig.setLiquidationProtocolFee(newFee);
Expand Down

0 comments on commit b0bea4c

Please sign in to comment.