pub trait SignPsbt {
// Required method
fn finish_tx(&mut self, psbt: Psbt) -> Result<Transaction>;
}Expand description
Ability to finalize a Psbt into a fully signed Transaction.
Wallets should apply all necessary signatures and finalize inputs according to their internal key management and policies.
Required Methods§
Sourcefn finish_tx(&mut self, psbt: Psbt) -> Result<Transaction>
fn finish_tx(&mut self, psbt: Psbt) -> Result<Transaction>
Consume a Psbt and return a fully signed and finalized Transaction.