Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ratankaliani committed Dec 5, 2023
1 parent 68edb53 commit a5969ca
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions contracts/script/deploy/Timelock.s.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ import {Strings} from "@openzeppelin/contracts/utils/Strings.sol";

contract DeployTimelock is BaseScript {
function run() external broadcaster {
console.log("Deploying Timelock contract on chain %s", Strings.toString(block.chainid));
console.log(
"Deploying Timelock contract on chain %s",
Strings.toString(block.chainid)
);

// Check inputs

Expand All @@ -23,7 +26,10 @@ contract DeployTimelock is BaseScript {

// Deploy contract
Timelock timelock = new Timelock{salt: CREATE2_SALT}(
MINIMUM_DELAY, PROPOSERS, EXECUTORS, address(0)
MINIMUM_DELAY,
PROPOSERS,
EXECUTORS,
address(0)
);

// Write address
Expand Down

0 comments on commit a5969ca

Please sign in to comment.