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§
sourcetype BridgedRelayChain: Chain<BlockNumber = RelayBlockNumber, Hash = RelayBlockHash, Hasher = RelayBlockHasher>
type BridgedRelayChain: Chain<BlockNumber = RelayBlockNumber, Hash = RelayBlockHash, Hasher = RelayBlockHasher>
Type of the bridged relay chain.
Object Safety§
This trait is not object safe.