remove verification in wrong file (#332)

This commit is contained in:
The Dark Jester
2024-11-26 11:26:05 +00:00
committed by GitHub
parent 3ecd75034d
commit 3fbe660683

View File

@@ -1,5 +1,5 @@
import { ethers, network, upgrades } from "hardhat";
import { tryStoreAddress, tryVerifyContract } from "../../../common/helpers";
import { tryStoreAddress } from "../../../common/helpers";
export async function deployBridgedTokenBeacon(verbose = false) {
const BridgedToken = await ethers.getContractFactory("BridgedToken");
@@ -35,8 +35,5 @@ export async function deployBridgedTokenBeacon(verbose = false) {
l2TokenBeacon.deployTransaction.hash,
);
await tryVerifyContract(await l1TokenBeacon.getAddress());
await tryVerifyContract(await l2TokenBeacon.getAddress());
return { l1TokenBeacon, l2TokenBeacon };
}