File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
packages/contracts-bedrock/scripts/deploy Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 " );
You can’t perform that action at this time.
0 commit comments