-
Notifications
You must be signed in to change notification settings - Fork 131
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/polkadot-staging' into remove-we…
…ight-constraint-that-is-no-longer-valid
- Loading branch information
Showing
26 changed files
with
2,087 additions
and
497 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,5 @@ | |
pub mod kusama_polkadot; | ||
pub mod polkadot_bulletin; | ||
pub mod rococo_bulletin; | ||
pub mod rococo_westend; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
65 changes: 65 additions & 0 deletions
65
...in-substrate/src/bridges/rococo_bulletin/bridge_hub_rococo_messages_to_rococo_bulletin.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
// Copyright 2022 Parity Technologies (UK) Ltd. | ||
// This file is part of Parity Bridges Common. | ||
|
||
// Parity Bridges Common is free software: you can redistribute it and/or modify | ||
// it under the terms of the GNU General Public License as published by | ||
// the Free Software Foundation, either version 3 of the License, or | ||
// (at your option) any later version. | ||
|
||
// Parity Bridges Common is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
|
||
// You should have received a copy of the GNU General Public License | ||
// along with Parity Bridges Common. If not, see <http://www.gnu.org/licenses/>. | ||
|
||
//! BridgeHubRococo-to-RococoBulletin messages sync entrypoint. | ||
use super::BridgeHubRococoAsBridgeHubPolkadot; | ||
use crate::cli::bridge::{CliBridgeBase, MessagesCliBridge}; | ||
use relay_polkadot_bulletin_client::PolkadotBulletin as RococoBulletin; | ||
use substrate_relay_helper::{messages_lane::SubstrateMessageLane, UtilityPalletBatchCallBuilder}; | ||
|
||
/// BridgeHubRococo-to-RococoBulletin messages bridge. | ||
pub struct BridgeHubRococoToRococoBulletinMessagesCliBridge {} | ||
|
||
impl CliBridgeBase for BridgeHubRococoToRococoBulletinMessagesCliBridge { | ||
type Source = BridgeHubRococoAsBridgeHubPolkadot; | ||
type Target = RococoBulletin; | ||
} | ||
|
||
impl MessagesCliBridge for BridgeHubRococoToRococoBulletinMessagesCliBridge { | ||
type MessagesLane = BridgeHubRococoMessagesToRococoBulletinMessageLane; | ||
} | ||
|
||
substrate_relay_helper::generate_receive_message_proof_call_builder!( | ||
BridgeHubRococoMessagesToRococoBulletinMessageLane, | ||
BridgeHubRococoMessagesToRococoBulletinMessageLaneReceiveMessagesProofCallBuilder, | ||
relay_polkadot_bulletin_client::RuntimeCall::BridgePolkadotMessages, | ||
relay_polkadot_bulletin_client::BridgePolkadotMessagesCall::receive_messages_proof | ||
); | ||
|
||
substrate_relay_helper::generate_receive_message_delivery_proof_call_builder!( | ||
BridgeHubRococoMessagesToRococoBulletinMessageLane, | ||
BridgeHubRococoMessagesToRococoBulletinMessageLaneReceiveMessagesDeliveryProofCallBuilder, | ||
relay_bridge_hub_rococo_client::RuntimeCall::BridgePolkadotBulletinMessages, | ||
relay_bridge_hub_rococo_client::BridgeBulletinMessagesCall::receive_messages_delivery_proof | ||
); | ||
|
||
/// BridgeHubRococo-to-RococoBulletin messages lane. | ||
#[derive(Clone, Debug)] | ||
pub struct BridgeHubRococoMessagesToRococoBulletinMessageLane; | ||
|
||
impl SubstrateMessageLane for BridgeHubRococoMessagesToRococoBulletinMessageLane { | ||
type SourceChain = BridgeHubRococoAsBridgeHubPolkadot; | ||
type TargetChain = RococoBulletin; | ||
|
||
type ReceiveMessagesProofCallBuilder = | ||
BridgeHubRococoMessagesToRococoBulletinMessageLaneReceiveMessagesProofCallBuilder; | ||
type ReceiveMessagesDeliveryProofCallBuilder = | ||
BridgeHubRococoMessagesToRococoBulletinMessageLaneReceiveMessagesDeliveryProofCallBuilder; | ||
|
||
type SourceBatchCallBuilder = UtilityPalletBatchCallBuilder<BridgeHubRococoAsBridgeHubPolkadot>; | ||
type TargetBatchCallBuilder = (); | ||
} |
Oops, something went wrong.