From 687e89c405043279d61ca297e0937e2033700f02 Mon Sep 17 00:00:00 2001 From: Alekos Filini Date: Mon, 30 Nov 2020 15:13:33 +0100 Subject: [PATCH] [wallet] Add a flag to fill-in `PSBT_GLOBAL_XPUB` --- src/cli.rs | 2 ++ 1 file changed, 2 insertions(+) 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(); } -- 2.49.0