Skip to content

Commit

Permalink
fix: docs
Browse files Browse the repository at this point in the history
  • Loading branch information
CheyenneAtapour committed Aug 7, 2024
1 parent 66c7510 commit c8de856
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/contracts/misc/GhoBucketCapacitySteward.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {IGhoBucketCapacitySteward} from './interfaces/IGhoBucketCapacitySteward.
* @author Aave Labs
* @notice Helper contract for managing bucket capacities of controlled facilitators
* @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 GHO_TOKEN_BUCKET_MANAGER_ROLE on GhoToken
* @dev Requires role GHO_TOKEN_BUCKET_MANAGER_ROLE on GhoToken
*/
contract GhoBucketCapacitySteward is Ownable, RiskCouncilControlled, IGhoBucketCapacitySteward {
using EnumerableSet for EnumerableSet.AddressSet;
Expand Down
7 changes: 4 additions & 3 deletions src/contracts/misc/GhoCcipSteward.sol
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import {IGhoCcipSteward} from './interfaces/IGhoCcipSteward.sol';
import {RiskCouncilControlled} from './RiskCouncilControlled.sol';
import {UpgradeableLockReleaseTokenPool} from './deps/Dependencies.sol';
import {RateLimiter} from './deps/RateLimiter.sol';
import {IGhoCcipSteward} from './interfaces/IGhoCcipSteward.sol';
import {RiskCouncilControlled} from './RiskCouncilControlled.sol';

/**
* @title GhoCcipSteward
Expand Down Expand Up @@ -41,7 +41,8 @@ contract GhoCcipSteward is RiskCouncilControlled, IGhoCcipSteward {
* @param ghoToken The address of the GhoToken
* @param ghoTokenPool The address of the Gho CCIP Token Pool
* @param riskCouncil The address of the risk council
* @param bridgeLimitEnabled Whether the bridge limit is enabled
* @param bridgeLimitEnabled Whether the capability to change bridge limit exists on the pool
* @dev bridgeLimitEnabled is true for Ethereum and false for remote chains
*/
constructor(
address ghoToken,
Expand Down

0 comments on commit c8de856

Please sign in to comment.