Skip to content

Commit

Permalink
fix: merge taproot signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
jp1ac4 committed Jan 13, 2025
1 parent 91af9b2 commit efd2577
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions liana-gui/src/app/state/psbt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -711,6 +711,12 @@ impl Action for UpdateAction {
input
.partial_sigs
.extend(updated_input.partial_sigs.clone().into_iter());
input
.tap_script_sigs
.extend(updated_input.tap_script_sigs.iter());
if let Some(sig) = updated_input.tap_key_sig {
input.tap_key_sig = Some(sig);
}
}
}
tx.sigs = self
Expand Down

0 comments on commit efd2577

Please sign in to comment.