Move bridge definitions

Move bridge definitions to their specific folder.

Signed-off-by: Serban Iorga <serban@parity.io>
This commit is contained in:
Serban Iorga
2022-07-13 14:51:10 +03:00
committed by Bastian Köcher
parent e1fd877b80
commit a2dcb1b4ad
14 changed files with 167 additions and 131 deletions
@@ -16,12 +16,14 @@
use async_trait::async_trait;
use crate::cli::{
bridge::{
CliBridgeBase, MillauToRialtoCliBridge, MillauToRialtoParachainCliBridge,
RialtoToMillauCliBridge, WestendToMillauCliBridge,
use crate::{
chains::{
millau_headers_to_rialto::MillauToRialtoCliBridge,
millau_headers_to_rialto_parachain::MillauToRialtoParachainCliBridge,
rialto_headers_to_millau::RialtoToMillauCliBridge,
westend_headers_to_millau::WestendToMillauCliBridge,
},
chain_schema::*,
cli::{bridge::CliBridgeBase, chain_schema::*},
};
use bp_runtime::Chain as ChainBase;
use codec::Encode;