Trait SignPsbt

Source
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§

Source

fn finish_tx(&mut self, psbt: Psbt) -> Result<Transaction>

Consume a Psbt and return a fully signed and finalized Transaction.

Implementations on Foreign Types§

Source§

impl SignPsbt for Wallet

Source§

fn finish_tx(&mut self, psbt: Psbt) -> Result<Transaction>

Implementors§