Skip to content

Commit

Permalink
Rename concrete fees script
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkeating committed Feb 14, 2024
1 parent 9f7a789 commit 0963d45
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {DeployInput} from "script/DeployInput.sol";
import {GovernorBravoDelegate} from "script/interfaces/GovernorBravoInterfaces.sol";
import {ProposeProtocolFeesBase} from "script/ProposeProtocolFeesBase.s.sol";

contract ProposeNewFeesOnWbtcWethDaiWethAndDaiUsdcPools is ProposeProtocolFeesBase {
contract ProposeProtocolFeesBatch1 is ProposeProtocolFeesBase {
/// @return An array of pools and new fee values to set
function getPoolFeeSettings() internal pure override returns (PoolFeeSettings[] memory) {
PoolFeeSettings[] memory poolFeeSettings = new PoolFeeSettings[](3);
Expand Down
8 changes: 4 additions & 4 deletions test/helpers/ProposalTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ import {Test} from "forge-std/Test.sol";
import {Deploy} from "script/Deploy.s.sol";
import {DeployInput} from "script/DeployInput.sol";
import {ProposeFactorySetOwner} from "script/ProposeFactorySetOwner.s.sol";
import {ProposeNewFeesOnWbtcWethDaiWethAndDaiUsdcPools} from
"script/ProposeNewFeesOnWbtcWethDaiWethAndDaiUsdcPools.sol";
import {ProposeProtocolFeesBatch1} from
"script/ProposeProtocolFeesBatch1.sol";
import {Constants} from "test/helpers/Constants.sol";
import {GovernorBravoDelegate} from "script/interfaces/GovernorBravoInterfaces.sol";
import {V3FactoryOwner} from "src/V3FactoryOwner.sol";
Expand Down Expand Up @@ -63,8 +63,8 @@ abstract contract ProposalTest is Test, DeployInput, Constants {
}

function _proposePoolFee() internal {
ProposeNewFeesOnWbtcWethDaiWethAndDaiUsdcPools _proposeFeeScript =
new ProposeNewFeesOnWbtcWethDaiWethAndDaiUsdcPools();
ProposeProtocolFeesBatch1 _proposeFeeScript =
new ProposeProtocolFeesBatch1();
setFeeProposalId = _proposeFeeScript.run(address(v3FactoryOwner));
}

Expand Down

0 comments on commit 0963d45

Please sign in to comment.