Skip to content

Commit

Permalink
chore: remove Pausable
Browse files Browse the repository at this point in the history
  • Loading branch information
philbow61 committed Nov 22, 2024
1 parent c9e2d5e commit 927c192
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions contracts/goodDollar/GoodDollarExpansionController.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,14 @@ import { IERC20 } from "openzeppelin-contracts-next/contracts/token/ERC20/IERC20
import { IGoodDollar } from "contracts/goodDollar/interfaces/IGoodProtocol.sol";
import { IDistributionHelper } from "contracts/goodDollar/interfaces/IGoodProtocol.sol";

import { PausableUpgradeable } from "openzeppelin-contracts-upgradeable/contracts/security/PausableUpgradeable.sol";
import { OwnableUpgradeable } from "openzeppelin-contracts-upgradeable/contracts/access/OwnableUpgradeable.sol";
import { unwrap, wrap, powu } from "prb/math/UD60x18.sol";

/**
* @title GoodDollarExpansionController
* @notice Provides functionality to expand the supply of GoodDollars.
*/
contract GoodDollarExpansionController is IGoodDollarExpansionController, PausableUpgradeable, OwnableUpgradeable {
contract GoodDollarExpansionController is IGoodDollarExpansionController, OwnableUpgradeable {
/* ========================================================= */
/* ==================== State Variables ==================== */
/* ========================================================= */
Expand Down Expand Up @@ -63,7 +62,6 @@ contract GoodDollarExpansionController is IGoodDollarExpansionController, Pausab
address _reserve,
address _avatar
) public initializer {
__Pausable_init();
__Ownable_init();

setGoodDollarExchangeProvider(_goodDollarExchangeProvider);
Expand Down

0 comments on commit 927c192

Please sign in to comment.