Skip to main content

BroadcastPoolTransaction

Trait BroadcastPoolTransaction 

Source
pub trait BroadcastPoolTransaction:
    Encodable
    + TxHashRef
    + Typed2718
    + Send
    + Sync
    + 'static { }
Available on crate feature network only.
Expand description

A transaction that can be lazily encoded for pool-backed outbound propagation.

Dyn Compatibility§

This trait is dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementors§

Source§

impl<T> BroadcastPoolTransaction for T
where T: Encodable + TxHashRef + Typed2718 + Send + Sync + 'static,