@@ -311,9 +311,7 @@ impl AppCommand<AppContext<OfflineOperations<'_>>> for CreateTxCommand {
311311
312312 let psbt = tx_builder. finish ( ) ?;
313313
314- // let psbt_base64 = BASE64_STANDARD.encode(psbt.serialize());
315-
316- Ok ( PsbtResult :: new ( & psbt, false , Some ( false ) ) )
314+ Ok ( PsbtResult :: new ( & psbt, Some ( false ) ) )
317315 }
318316}
319317
@@ -604,7 +602,7 @@ impl AppCommand<AppContext<OfflineOperations<'_>>> for BumpFeeCommand {
604602
605603 // let psbt_base64 = BASE64_STANDARD.encode(psbt.serialize());
606604
607- Ok ( PsbtResult :: new ( & psbt, false , Some ( false ) ) )
605+ Ok ( PsbtResult :: new ( & psbt, Some ( false ) ) )
608606 }
609607}
610608
@@ -672,7 +670,7 @@ impl AppCommand<AppContext<OfflineOperations<'_>>> for SignCommand {
672670 ..Default :: default ( )
673671 } ;
674672 let finalized = wallet. sign ( & mut psbt, signopt) ?;
675- Ok ( PsbtResult :: new ( & psbt, false , Some ( finalized) ) )
673+ Ok ( PsbtResult :: new ( & psbt, Some ( finalized) ) )
676674 }
677675}
678676
@@ -728,7 +726,7 @@ impl AppCommand<AppContext<OfflineOperations<'_>>> for FinalizePsbtCommand {
728726
729727 let finalized = wallet. finalize_psbt ( & mut psbt, signopt) ?;
730728
731- Ok ( PsbtResult :: new ( & psbt, false , Some ( finalized) ) )
729+ Ok ( PsbtResult :: new ( & psbt, Some ( finalized) ) )
732730 }
733731}
734732
@@ -763,7 +761,7 @@ impl AppCommand<AppContext<OfflineOperations<'_>>> for CombinePsbtCommand {
763761 Ok ( acc)
764762 } ) ?;
765763
766- Ok ( PsbtResult :: new ( & final_psbt, false , None ) )
764+ Ok ( PsbtResult :: new ( & final_psbt, None ) )
767765 }
768766}
769767
0 commit comments