Skip to content

Commit

Permalink
fix: function access type
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherlymite committed Apr 26, 2024
1 parent 07fdf89 commit ac1aea8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/contracts/protocol/pool/PoolConfigurator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ abstract contract PoolConfigurator is VersionedInitializable, IPoolConfigurator
}

/// @inheritdoc IPoolConfigurator
function setReservePause(address asset, bool paused) public override onlyEmergencyOrPoolAdmin {
function setReservePause(address asset, bool paused) external override onlyEmergencyOrPoolAdmin {
setReservePause(asset, paused, 0);
}

Expand Down

0 comments on commit ac1aea8

Please sign in to comment.