Skip to content

Commit

Permalink
fix: merge tap_script_sigs from signed psbt
Browse files Browse the repository at this point in the history
  • Loading branch information
edouardparis committed Mar 20, 2024
1 parent 07f01ce commit f4ae44f
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions gui/src/app/state/psbt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -574,6 +574,12 @@ fn merge_signatures(psbt: &mut Psbt, signed_psbt: &Psbt) {
psbtin
.partial_sigs
.extend(&mut signed_psbtin.partial_sigs.iter());
psbtin
.tap_script_sigs
.extend(&mut signed_psbtin.tap_script_sigs.iter());
if let Some(sig) = signed_psbtin.tap_key_sig {
psbtin.tap_key_sig = Some(sig);
}
}
}

Expand Down

0 comments on commit f4ae44f

Please sign in to comment.