Trait reth_network_api::BlockClient

pub trait BlockClient:
    HeadersClient
    + BodiesClient
    + Unpin
    + Clone { }
Expand description

Helper trait that unifies network behaviour needed for fetching blocks.

Object Safety§

This trait is not object safe.

Implementors§

§

impl<T> BlockClient for T
where T: HeadersClient + BodiesClient + Unpin + Clone,