referrerpolicy=no-referrer-when-downgrade
pub trait BoundedBridgeGrandpaConfig<I: 'static>: Config<I, BridgedChain = Self::BridgedRelayChain> {
    type BridgedRelayChain: Chain<BlockNumber = RelayBlockNumber, Hash = RelayBlockHash, Hasher = RelayBlockHasher>;
}
Expand description

Convenience trait for defining BridgedChain bounds.

Required Associated Types§

source

type BridgedRelayChain: Chain<BlockNumber = RelayBlockNumber, Hash = RelayBlockHash, Hasher = RelayBlockHasher>

Type of the bridged relay chain.

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<T, I: 'static> BoundedBridgeGrandpaConfig<I> for T
where T: Config<I>, T::BridgedChain: Chain<BlockNumber = RelayBlockNumber, Hash = RelayBlockHash, Hasher = RelayBlockHasher>,

§

type BridgedRelayChain = <T as Config<I>>::BridgedChain