Trait InputMultisigDetection

Source
pub trait InputMultisigDetection {
    // Required method
    fn multisig_info(&self) -> Result<Option<MultisigInputInfo>, InputError>;
}

Required Methods§

Implementations on Foreign Types§

Source§

impl InputMultisigDetection for TxIn

Source§

fn multisig_info(&self) -> Result<Option<MultisigInputInfo>, InputError>

Returns Some(MultisigInputInfo) when the input detectably spends a multisig, If the multisig spend is not detected, None() is returned.

Implementors§