[][src]Trait exonum_btc_anchoring::test_helpers::ValidateProof

pub trait ValidateProof {
    type Output;
    fn validate(self, validator_keys: &[PublicKey]) -> Result<Self::Output>;
}

Proof validation extension.

Associated Types

type Output

Output value.

Loading content...

Required methods

fn validate(self, validator_keys: &[PublicKey]) -> Result<Self::Output>

Perform the proof validation procedure with the given exonum blockchain configuration.

Loading content...

Implementors

impl ValidateProof for TransactionProof[src]

type Output = Option<(u64, Transaction)>

Loading content...