Trait reth_provider::TreeViewer

source ·
pub trait TreeViewer:
    BlockchainTreeViewer
    + BlockchainTreePendingStateProvider
    + CanonStateSubscriptions
    + BlockchainTreeEngine { }
Expand description

Helper trait to combine all the traits we need for the BlockchainProvider

This is a temporary solution

Implementors§

source§

impl<T> TreeViewer for T
where T: BlockchainTreeViewer + BlockchainTreePendingStateProvider + CanonStateSubscriptions + BlockchainTreeEngine,