Skip to content

Commit

Permalink
fix: remove excess logging
Browse files Browse the repository at this point in the history
  • Loading branch information
kfastov committed Oct 16, 2024
1 parent f4d779d commit e2d2825
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions src/script/deploy.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,6 @@ async function deployLineaWorldID(config) {

try {
let command = `forge script src/script/DeployLineaWorldID.s.sol:DeployLineaWorldID --fork-url ${config.lineaRpcUrl} --broadcast --json`;
console.log(command);
const output = execSync(command);
const data = output.toString();
const jsonData = parseJson(data);
Expand Down Expand Up @@ -279,8 +278,6 @@ async function verifyLineaWorldID(config) {

command += ` --watch`;

console.log(command);

const output = execSync(command);
console.log(output.toString());
spinner.succeed("Verification command ran successfully!");
Expand Down

0 comments on commit e2d2825

Please sign in to comment.