File tree 2 files changed +2
-4
lines changed
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -476,9 +476,9 @@ yargs(hideBin(process.argv))
476
476
// TODO: is there an easier way to do this?
477
477
const { ntt : upgraded } = await nttFromManager ( ch , chainConfig . manager ) ;
478
478
479
- console . log ( "UPGRADE -> CHAINCONFIG BEFORE:" , JSON . stringify ( chainConfig ) ) ;
479
+ console . log ( "UPGRADE -> CHAINCONFIG BEFORE:" , chainConfig . version ) ;
480
480
chainConfig . version = getVersion ( chain , upgraded )
481
- console . log ( "UPGRADE -> CHAINCONFIG AFTER:" , JSON . stringify ( chainConfig ) ) ;
481
+ console . log ( "UPGRADE -> CHAINCONFIG AFTER:" , chainConfig . version ) ;
482
482
fs . writeFileSync ( path , JSON . stringify ( deployments , null , 2 ) ) ;
483
483
484
484
console . log ( `Successfully upgraded ${ chain } to version ${ toVersion || 'local version' } ` ) ;
@@ -1743,7 +1743,6 @@ async function pullChainConfig<N extends Network, C extends Chain>(
1743
1743
inbound : { } ,
1744
1744
} ,
1745
1745
} ;
1746
- console . log ( "PULLCHAINCONFIG CONFIG:" , JSON . stringify ( config , null , 2 ) ) ;
1747
1746
if ( transceiverPauser ) {
1748
1747
config . transceivers . wormhole . pauser = transceiverPauser . toString ( ) ;
1749
1748
}
Original file line number Diff line number Diff line change @@ -618,7 +618,6 @@ export class SolanaNtt<N extends Network, C extends SolanaChains>
618
618
sender ? new SolanaAddress ( sender ) . unwrap ( ) : undefined
619
619
) ;
620
620
} catch ( e ) {
621
- console . log ( "NOT DEPLOYED!" ) ;
622
621
// This might happen if e.g. the program is not deployed yet.
623
622
const version = "3.0.0" ;
624
623
return version ;
You can’t perform that action at this time.
0 commit comments