From: Alekos Filini Date: Mon, 30 Nov 2020 14:13:33 +0000 (+0100) Subject: [wallet] Add a flag to fill-in `PSBT_GLOBAL_XPUB` X-Git-Tag: v0.1.0~19 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/struct.DisplayArray.html?a=commitdiff_plain;h=687e89c405043279d61ca297e0937e2033700f02;p=bdk-cli [wallet] Add a flag to fill-in `PSBT_GLOBAL_XPUB` --- diff --git a/src/cli.rs b/src/cli.rs index 87a5ff6..882f6da 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -458,6 +458,7 @@ where if sub_matches.is_present("offline_signer") { tx_builder = tx_builder + .add_global_xpubs() .force_non_witness_utxo() .include_output_redeem_witness_script(); } @@ -515,6 +516,7 @@ where if sub_matches.is_present("offline_signer") { tx_builder = tx_builder + .add_global_xpubs() .force_non_witness_utxo() .include_output_redeem_witness_script(); }