Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update BaseFeeOracle.sol: Reduction of extra Slot #562

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions contracts/BaseFeeOracle.sol
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface IBaseFee {

/**
* @dev Interprets the base fee from our base fee provider
* contract to determine if a harvest is permissable.
* contract to determine if a harvest is permissible.
*
* Version 0.1.0
*/
Expand All @@ -18,9 +18,10 @@ contract BaseFeeOracle {

address public governance; /// @notice Governance can grant and revoke access to the setter
address public pendingGovernance; /// @notice New address must be set by current gov and then accept to transfer power.
bool public manualBaseFeeBool; /// @notice Use this if our network hasn't implemented the base fee method yet

mapping(address => bool) public authorizedAddresses; /// @notice Addresses that can set the max acceptable base fee

bool public manualBaseFeeBool; /// @notice Use this if our network hasn't implemented the base fee method yet

constructor() {
governance = msg.sender; // our deployer should be gov, they can set up the rest
Expand Down
Loading