Skip to main content

BalProvider

Trait BalProvider 

Source
pub trait BalProvider {
    // Required method
    fn bal_store(&self) -> &BalStoreHandle;
}
Available on crate feature provider only.
Expand description

Provider-side access to BAL storage.

Required Methods§

Source

fn bal_store(&self) -> &BalStoreHandle

Returns the configured BAL store handle.

Implementations on Foreign Types§

Source§

impl<'a, T> BalProvider for &'a T
where T: 'a + BalProvider + ?Sized,

Source§

impl<T> BalProvider for Arc<T>
where T: BalProvider + ?Sized,

Implementors§

Source§

impl<ChainSpec, N> BalProvider for NoopProvider<ChainSpec, N>

Source§

impl<N> BalProvider for BlockchainProvider<N>
where N: NodeTypesWithDB,

Source§

impl<N> BalProvider for ProviderFactory<N>
where N: NodeTypesWithDB,

Source§

impl<T, ChainSpec> BalProvider for MockEthProvider<T, ChainSpec>
where T: NodePrimitives,