Skip to content

Commit

Permalink
Format code
Browse files Browse the repository at this point in the history
  • Loading branch information
alexkeating committed Feb 8, 2024
1 parent d1f1296 commit 8050ac1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions script/Propose.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ contract Propose is Script, DeployInput {
GovernorBravoDelegate constant GOVERNOR =
GovernorBravoDelegate(0x408ED6354d4973f66138C91495F2f2FCbd8724C3); // Mainnet governor
// TODO placeholder delegate: jessewldn
address PROPOSER = 0xe7925D190aea9279400cD9a005E33CEB9389Cc2b;
address PROPOSER = 0xe7925D190aea9279400cD9a005E33CEB9389Cc2b;

function propose(address _v3FactoryOwner) internal returns (uint256 _proposalId) {
address[] memory _targets = new address[](4);
Expand Down Expand Up @@ -53,7 +53,9 @@ contract Propose is Script, DeployInput {
);
}

/// @dev After the UniStaker and V3FactoryOwner contracts are deployed a delegate should run this script to create a proposal to change the Uniswap v3 factory owner and enable protocol fees for select pools.
/// @dev After the UniStaker and V3FactoryOwner contracts are deployed a delegate should run this
/// script to create a proposal to change the Uniswap v3 factory owner and enable protocol fees
/// for select pools.
function run(address v3FactoryOwner) public returns (uint256 _proposalId) {
// The expectation is the key loaded here corresponds to the address of the `proposer` above.
// When running as a script, broadcast will fail if the key is not correct.
Expand Down
2 changes: 1 addition & 1 deletion script/interfaces/GovernorBravoInterfaces.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity ^0.8.23;

// This interface was created using cast interface. The contract can be found at
// This interface was created using cast interface. The contract can be found at
// https://etherscan.io/address/0x53a328f4086d7c0f1fa19e594c9b842125263026#code#F2#L182

interface GovernorBravoDelegate {
Expand Down

0 comments on commit 8050ac1

Please sign in to comment.