Skip to content

Commit

Permalink
forge fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
duncancmt committed Dec 16, 2024
1 parent e1c69d6 commit 1c1dcf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
6 changes: 1 addition & 5 deletions src/chains/Blast/Common.sol
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,7 @@ abstract contract BlastMixin is FreeMemory, SettlerBase {
constructor() {
if (block.chainid != 31337) {
assert(block.chainid == 81457);
BLAST.configure(
BlastYieldMode.AUTOMATIC,
BlastGasMode.CLAIMABLE,
IOwnable(DEPLOYER).owner()
);
BLAST.configure(BlastYieldMode.AUTOMATIC, BlastGasMode.CLAIMABLE, IOwnable(DEPLOYER).owner());
BLAST_USDB.configure(BlastYieldMode.VOID);
BLAST_WETH.configure(BlastYieldMode.VOID);
}
Expand Down
6 changes: 1 addition & 5 deletions src/deployer/BlastDeployer.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,7 @@ import {BLAST, BlastYieldMode, BlastGasMode} from "../chains/Blast/IBlast.sol";
contract BlastDeployer is Deployer {
constructor(uint256 version) Deployer(version) {
assert(block.chainid == 81457);
BLAST.configure(
BlastYieldMode.AUTOMATIC,
BlastGasMode.CLAIMABLE,
BlastDeployer(DEPLOYER).owner()
);
BLAST.configure(BlastYieldMode.AUTOMATIC, BlastGasMode.CLAIMABLE, BlastDeployer(DEPLOYER).owner());
}

function initialize(address initialOwner) public override {
Expand Down

0 comments on commit 1c1dcf7

Please sign in to comment.