Skip to content

Commit bda6f42

Browse files
committed
ci: Add sleep before fetching upgraded ntt
1 parent d603c6b commit bda6f42

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

cli/src/index.ts

+1-6
Original file line numberDiff line numberDiff line change
@@ -474,10 +474,10 @@ yargs(hideBin(process.argv))
474474

475475
// reinit the ntt object to get the new version
476476
// TODO: is there an easier way to do this?
477+
await new Promise((resolve) => setTimeout(resolve, 2000));
477478
const { ntt: upgraded } = await nttFromManager(ch, chainConfig.manager);
478479

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

483483
console.log(`Successfully upgraded ${chain} to version ${toVersion || 'local version'}`);
@@ -1834,14 +1834,9 @@ async function nttFromManager<N extends Network, C extends Chain>(
18341834

18351835
const addresses: Partial<Ntt.Contracts> = { manager: nativeManagerAddress, ...diff };
18361836

1837-
if (diff) {
1838-
console.log("NTTFROMMANAGER -> addresses:", JSON.stringify(diff));
1839-
}
1840-
18411837
const ntt = await ch.getProtocol("Ntt", {
18421838
ntt: addresses
18431839
});
1844-
console.log("NTTFROMMANAGER -> ntt:", getVersion(ch.chain, ntt));
18451840

18461841
return { ntt, addresses };
18471842
}

0 commit comments

Comments
 (0)