Skip to content

Commit

Permalink
fix: clarify required roles
Browse files Browse the repository at this point in the history
  • Loading branch information
CheyenneAtapour committed Jul 26, 2024
1 parent a5652ec commit 05d78dd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/contracts/misc/GhoAaveSteward.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ import {RiskCouncilControlled} from './RiskCouncilControlled.sol';
* @author Aave Labs
* @notice Helper contract for managing parameters of the GHO reserve
* @dev Only the Risk Council is able to action contract's functions, based on specific conditions that have been agreed upon with the community.
* @dev Requires role RiskAdmin on the Aave V3 Ethereum Pool
*/
contract GhoAaveSteward is Ownable, RiskCouncilControlled, IGhoAaveSteward {
using ReserveConfiguration for DataTypes.ReserveConfigurationMap;
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/misc/GhoGsmSteward.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {RiskCouncilControlled} from './RiskCouncilControlled.sol';
* @author Aave Labs
* @notice Helper contract for managing parameters of the GSM
* @dev Only the Risk Council is able to action contract's functions, based on specific conditions that have been agreed upon with the community.
* @dev Requires role GSM_CONFIGURATOR_ROLE on the GhoGsm contract
* @dev Requires role GSM_CONFIGURATOR_ROLE on the GhoGsm contract and CONFIGURATOR on every GSM asset to be managed
*/
contract GhoGsmSteward is Ownable, RiskCouncilControlled, IGhoGsmSteward {
using EnumerableSet for EnumerableSet.AddressSet;
Expand Down

0 comments on commit 05d78dd

Please sign in to comment.