Skip to content

Commit

Permalink
remove console.log
Browse files Browse the repository at this point in the history
  • Loading branch information
leoslr committed Oct 25, 2023
1 parent 40cd6a9 commit 26302df
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions packages/smart-contracts/scripts-create2/verify.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ export async function VerifyCreate2FromList(hre: HardhatRuntimeEnvironmentExtend
});
};

console.log(hre.config);
let address: string;
for (const contract of create2ContractDeploymentList) {
try {
Expand All @@ -53,12 +52,6 @@ export async function VerifyCreate2FromList(hre: HardhatRuntimeEnvironmentExtend
EvmChains.assertChainSupported(network);
const constructorArgs = getConstructorArgs(contract, network);
address = await computeCreate2DeploymentAddress({ contract, constructorArgs }, hre);

console.log({
network,
address,
constructorArgs,
});
await verifyOne(address, { contract, constructorArgs }, hre);
break;
}
Expand Down

0 comments on commit 26302df

Please sign in to comment.