File tree 1 file changed +1
-6
lines changed
1 file changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -474,10 +474,10 @@ yargs(hideBin(process.argv))
474
474
475
475
// reinit the ntt object to get the new version
476
476
// TODO: is there an easier way to do this?
477
+ await new Promise ( ( resolve ) => setTimeout ( resolve , 2000 ) ) ;
477
478
const { ntt : upgraded } = await nttFromManager ( ch , chainConfig . manager ) ;
478
479
479
480
chainConfig . version = getVersion ( chain , upgraded )
480
- console . log ( "UPGRADE -> CHAINCONFIG AFTER:" , chainConfig . version ) ;
481
481
fs . writeFileSync ( path , JSON . stringify ( deployments , null , 2 ) ) ;
482
482
483
483
console . log ( `Successfully upgraded ${ chain } to version ${ toVersion || 'local version' } ` ) ;
@@ -1834,14 +1834,9 @@ async function nttFromManager<N extends Network, C extends Chain>(
1834
1834
1835
1835
const addresses : Partial < Ntt . Contracts > = { manager : nativeManagerAddress , ...diff } ;
1836
1836
1837
- if ( diff ) {
1838
- console . log ( "NTTFROMMANAGER -> addresses:" , JSON . stringify ( diff ) ) ;
1839
- }
1840
-
1841
1837
const ntt = await ch . getProtocol ( "Ntt" , {
1842
1838
ntt : addresses
1843
1839
} ) ;
1844
- console . log ( "NTTFROMMANAGER -> ntt:" , getVersion ( ch . chain , ntt ) ) ;
1845
1840
1846
1841
return { ntt, addresses } ;
1847
1842
}
You can’t perform that action at this time.
0 commit comments