Trait EthBlockClient

pub trait EthBlockClient: BlockClient<Block = Block<TransactionSigned>> { }
Available on crate feature network only.
Expand description

The BlockClient providing Ethereum block parts.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

§

impl<T> EthBlockClient for T
where T: BlockClient<Block = Block<TransactionSigned>>,