Skip to content

Commit

Permalink
Some clean up
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkeating committed Feb 14, 2024
1 parent aa1778f commit c16b9c0
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 11 deletions.
3 changes: 0 additions & 3 deletions test/UniStaker.integration.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,6 @@ contract Propose is ProposalTest {
IUniswapPool daiUsdcPool = IUniswapPool(DAI_USDC_100_POOL);
(,,,,, uint8 oldDaiUsdcFeeProtocol,) = daiUsdcPool.slot0();

// _passAndQueueProposals();
// _executeProposal(setOwnerProposalId);
// _executeProposal(setFeeProposalId);
_passAndQueueProposals();

(,,,,, uint8 newWbtcWethFeeProtocol,) = wbtcWethPool.slot0();
Expand Down
8 changes: 0 additions & 8 deletions test/helpers/ProposalTest.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
pragma solidity ^0.8.23;

import {Test} from "forge-std/Test.sol";
import {console2} from "forge-std/console2.sol";

import {Deploy} from "script/Deploy.s.sol";
import {DeployInput} from "script/DeployInput.sol";
Expand Down Expand Up @@ -116,13 +115,6 @@ abstract contract ProposalTest is Test, DeployInput, Constants {
_jumpToVoteComplete(setOwnerProposalId);
}

//function _defeatUniswapProposal() internal {
// _jumpToActiveProposal(setFeeProposalId);
// _delegatesVoteOnUniswapProposal(setOwnerProposalId, uint8(VoteType.Against));
// _delegatesVoteOnUniswapProposal(setFeeProposalId, uint8(VoteType.Against));
// _jumpToVoteComplete(setFeeProposalId);
//}

function _passAndQueueProposals() internal {
_passNewFactoryOwnerProposal();
governor.queue(setOwnerProposalId);
Expand Down

0 comments on commit c16b9c0

Please sign in to comment.