Skip to content

Commit 3296148

Browse files
committed
contracts: rm not used format
Signed-off-by: jsvisa <[email protected]>
1 parent 4ba2eb0 commit 3296148

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/contracts-bedrock/scripts/deploy/ChainAssertions.sol

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ library ChainAssertions {
232232

233233
/// @notice Asserts that the PreimageOracle is setup correctly
234234
function checkPreimageOracle(IPreimageOracle _oracle, DeployConfig _cfg) internal view {
235-
console.log("Running chain assertions on the PreimageOracle %s at %s", address(_oracle));
235+
console.log("Running chain assertions on the PreimageOracle at %s", address(_oracle));
236236
require(address(_oracle) != address(0), "CHECK-PIO-10");
237237

238238
require(_oracle.minProposalSize() == _cfg.preimageOracleMinProposalSize(), "CHECK-PIO-30");
@@ -241,7 +241,7 @@ library ChainAssertions {
241241

242242
/// @notice Asserts that the MIPs contract is setup correctly
243243
function checkMIPS(IMIPS _mips, IPreimageOracle _oracle) internal view {
244-
console.log("Running chain assertions on the MIPS %s at %s", address(_mips));
244+
console.log("Running chain assertions on the MIPS at %s", address(_mips));
245245
require(address(_mips) != address(0), "CHECK-MIPS-10");
246246

247247
require(_mips.oracle() == _oracle, "CHECK-MIPS-20");

0 commit comments

Comments
 (0)