@@ -24,7 +24,7 @@ export async function testFHETestPublicDecryptCommand(options) {
2424
2525 logCLI ( '🚚 network: ' + config . name , options ) ;
2626 logCLI ( '🚀 route: v' + config . version , options ) ;
27- logCLI ( `🍔 signer: ${ signer . address } ` ) ;
27+ logCLI ( `🍔 signer: ${ signer . address } ` , options ) ;
2828
2929 if ( ! FHETestAddresses [ config . name ] ) {
3030 logCLI ( `❌ FHETest is not deployed on network ${ config . name } ` , options ) ;
@@ -51,14 +51,14 @@ export async function testFHETestPublicDecryptCommand(options) {
5151 for ( let i = 0 ; i < getFuncNames . length ; ++ i ) {
5252 const handle = await contract [ getFuncNames [ i ] ] ( ) ;
5353 handles . push ( handle ) ;
54- logCLI ( `🏈 handle: ${ handle } ` ) ;
54+ logCLI ( `🏈 handle: ${ handle } ` , options ) ;
5555 }
5656
5757 const res = await publicDecrypt ( handles , config , zamaFhevmApiKey , options ) ;
5858
5959 console . log ( safeJSONstringify ( res , 2 ) ) ;
6060
61- logCLI ( `Verify ...` ) ;
61+ logCLI ( `Verify ...` , options ) ;
6262
6363 // Simulate the transaction using staticCall (dry run)
6464 await contract . verify . staticCall (
@@ -67,5 +67,5 @@ export async function testFHETestPublicDecryptCommand(options) {
6767 res . decryptionProof ,
6868 ) ;
6969
70- logCLI ( `✅ Verification succeeded!` ) ;
70+ logCLI ( `✅ Verification succeeded!` , options ) ;
7171}
0 commit comments