pub trait InputMultisigDetection {
// Required method
fn multisig_info(&self) -> Result<Option<MultisigInputInfo>, InputError>;
}
Required Methods§
fn multisig_info(&self) -> Result<Option<MultisigInputInfo>, InputError>
Implementations on Foreign Types§
Source§impl InputMultisigDetection for TxIn
impl InputMultisigDetection for TxIn
Source§fn multisig_info(&self) -> Result<Option<MultisigInputInfo>, InputError>
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.