rename ChainWithMessages -> UnderlyingChainProvider (#1639)

This commit is contained in:
Svyatoslav Nikolsky
2022-11-14 14:33:54 +03:00
committed by Bastian Köcher
parent 6dcecf4425
commit 3c76889948
5 changed files with 20 additions and 20 deletions
@@ -116,7 +116,7 @@ impl MessageBridge for WithRialtoMessageBridge {
#[derive(RuntimeDebug, Clone, Copy)]
pub struct Millau;
impl messages::ChainWithMessages for Millau {
impl messages::UnderlyingChainProvider for Millau {
type Chain = bp_millau::Millau;
}
@@ -174,7 +174,7 @@ impl messages::ThisChainWithMessages for Millau {
#[derive(RuntimeDebug, Clone, Copy)]
pub struct Rialto;
impl messages::ChainWithMessages for Rialto {
impl messages::UnderlyingChainProvider for Rialto {
type Chain = bp_rialto::Rialto;
}
@@ -123,7 +123,7 @@ impl MessageBridge for WithRialtoParachainMessageBridge {
#[derive(RuntimeDebug, Clone, Copy)]
pub struct Millau;
impl messages::ChainWithMessages for Millau {
impl messages::UnderlyingChainProvider for Millau {
type Chain = bp_millau::Millau;
}
@@ -165,7 +165,7 @@ impl messages::ThisChainWithMessages for Millau {
#[derive(RuntimeDebug, Clone, Copy)]
pub struct RialtoParachain;
impl messages::ChainWithMessages for RialtoParachain {
impl messages::UnderlyingChainProvider for RialtoParachain {
type Chain = bp_rialto_parachain::RialtoParachain;
}