Struct btc_transaction_utils::multisig::RedeemScriptContent[][src]

pub struct RedeemScriptContent {
    pub public_keys: Vec<PublicKey>,
    pub quorum: usize,
}

Redeem script content.

Fields

The public keys of the participants of this redeem script.

The number of signatures required to spend the input which corresponds to the given redeem script.

Methods

impl RedeemScriptContent
[src]

Tries to fetch redeem script content from the given raw script and returns error if the script doesn't satisfy BIP-16 standard.

Trait Implementations

impl Debug for RedeemScriptContent
[src]

Formats the value using the given formatter. Read more

impl PartialEq for RedeemScriptContent
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations