Skip to content

Commit

Permalink
Sync templates with tutorial
Browse files Browse the repository at this point in the history
  • Loading branch information
fvictorio committed Feb 19, 2025
1 parent ffab2cc commit 7aa655d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ async function mainnetExample() {
});

console.log(
"GasPriceOracle exists in mainnet chain type?",
"GasPriceOracle exists in l1 chain type?",
gasPriceOracleCode !== undefined,
);
}
Expand All @@ -26,7 +26,7 @@ async function opExample() {
});

console.log(
"GasPriceOracle exists in op chain type?",
"GasPriceOracle exists in optimism chain type?",
gasPriceOracleCode !== undefined,
);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ async function mainnetExample() {
const gasPriceOracleCode = await ethers.provider.getCode(OP_GAS_PRICE_ORACLE);

console.log(
"GasPriceOracle exists in mainnet chain type?",
"GasPriceOracle exists in l1 chain type?",
gasPriceOracleCode !== "0x",
);
}
Expand All @@ -20,7 +20,7 @@ async function opExample() {
const gasPriceOracleCode = await ethers.provider.getCode(OP_GAS_PRICE_ORACLE);

console.log(
"GasPriceOracle exists in op chain type?",
"GasPriceOracle exists in optimism chain type?",
gasPriceOracleCode !== "0x",
);
}
Expand Down

0 comments on commit 7aa655d

Please sign in to comment.