Skip to content

Commit

Permalink
command: also update Taproot sigs in 'updatespend'
Browse files Browse the repository at this point in the history
  • Loading branch information
darosior committed Feb 27, 2024
1 parent 56b0c65 commit d0276db
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -555,6 +555,12 @@ impl DaemonControl {
psbtin
.partial_sigs
.extend(db_psbtin.partial_sigs.clone().into_iter());
psbtin
.tap_script_sigs
.extend(db_psbtin.tap_script_sigs.clone().into_iter());
if psbtin.tap_key_sig.is_none() {
psbtin.tap_key_sig = db_psbtin.tap_key_sig;
}
}
} else {
// If the transaction doesn't exist in DB already, sanity check its inputs.
Expand Down

0 comments on commit d0276db

Please sign in to comment.