Skip to content

Commit

Permalink
ci: Remove cyclic struct log
Browse files Browse the repository at this point in the history
  • Loading branch information
nvsriram committed Dec 6, 2024
1 parent 85165e0 commit 8b5ab31
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions cli/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,7 +459,7 @@ yargs(hideBin(process.argv))
{ chain, address: toUniversal(chain, chainConfig.manager) },
overrides
);
console.log("UPGRADE -> ntt:", JSON.stringify(ntt, null, 2))
console.log("UPGRADE -> before:", getVersion(chain, ntt));

await upgrade(
currentVersion,
Expand All @@ -477,9 +477,6 @@ yargs(hideBin(process.argv))
// TODO: is there an easier way to do this?
const { ntt: upgraded } = await nttFromManager(ch, chainConfig.manager);

console.log("UPGRADE -> upgraded:", JSON.stringify(upgraded, null, 2));

console.log("UPGRADE -> CHAINCONFIG BEFORE:", chainConfig.version);
chainConfig.version = getVersion(chain, upgraded)
console.log("UPGRADE -> CHAINCONFIG AFTER:", chainConfig.version);
fs.writeFileSync(path, JSON.stringify(deployments, null, 2));
Expand Down

0 comments on commit 8b5ab31

Please sign in to comment.