pub trait TxOutExt: Borrow<TxOut> {
// Provided methods
fn is_p2a_fee_anchor(&self) -> bool { ... }
fn is_standard(&self) -> bool { ... }
}Expand description
Extension trait for TxOut.
Provided Methods§
Sourcefn is_p2a_fee_anchor(&self) -> bool
fn is_p2a_fee_anchor(&self) -> bool
Check whether this output is a p2a fee anchor.
Sourcefn is_standard(&self) -> bool
fn is_standard(&self) -> bool
Basic standardness check. Might be too strict.