Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dry run xcms on bridge hubs to get forwarded xcms across the W<>R bridge #6002

Open
wants to merge 20 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
0a74c6e
fix(parachain-system): not include messages if empty
franciscoaguirre Oct 3, 2024
4ba9883
fix: exporters already add their message to xcmp-queue
franciscoaguirre Oct 3, 2024
b9755bf
doc: prdoc
franciscoaguirre Oct 3, 2024
4594acb
Merge branch 'master' into xcm-dry-run-redundant-forwarded-xcms
franciscoaguirre Oct 3, 2024
08dad22
test(bridge-hub-westend-integration-tests): add dry run test
franciscoaguirre Oct 4, 2024
196d265
Merge branch 'master' into xcm-dry-run-redundant-forwarded-xcms
franciscoaguirre Oct 4, 2024
5914f23
test(bridge-hub-rococo-integration-tests): add same test as in westend
franciscoaguirre Oct 4, 2024
84e60a0
test(emulated-integration-tests-common): refactor rococo and westend …
franciscoaguirre Oct 4, 2024
72d1a00
Merge branch 'master' into xcm-dry-run-redundant-forwarded-xcms
franciscoaguirre Oct 4, 2024
aab1b1d
doc: update prdoc
franciscoaguirre Oct 4, 2024
4cddc77
doc: add a note of why some impls are empty
franciscoaguirre Oct 4, 2024
250c987
".git/.scripts/commands/fmt/fmt.sh"
Oct 4, 2024
ddc07f3
Merge branch 'master' into xcm-dry-run-redundant-forwarded-xcms
franciscoaguirre Oct 4, 2024
5fab2ab
Merge branch 'master' into xcm-dry-run-redundant-forwarded-xcms
franciscoaguirre Oct 7, 2024
096b855
feat: allow dry-running on bridge hubs and getting xcms over the bridge
franciscoaguirre Oct 9, 2024
daa1d8a
doc: add prdoc
franciscoaguirre Oct 9, 2024
671a326
Merge branch 'master' into xcm-dry-run-pk-bridge
franciscoaguirre Oct 10, 2024
be83b0f
Merge branch 'master' into xcm-dry-run-pk-bridge
franciscoaguirre Oct 11, 2024
a6f8b11
Merge branch 'master' into xcm-dry-run-pk-bridge
bkontur Oct 15, 2024
840ab25
chore: some feedback
franciscoaguirre Oct 15, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
".git/.scripts/commands/fmt/fmt.sh"
command-bot committed Oct 4, 2024
commit 250c98762a2dc31649bc081d79790617c5d7372e
Original file line number Diff line number Diff line change
@@ -33,8 +33,8 @@ mod imports {
pub use emulated_integration_tests_common::{
accounts::ALICE,
impls::Inspect,
test_parachain_is_trusted_teleporter, test_parachain_is_trusted_teleporter_for_relay,
test_relay_is_trusted_teleporter, test_dry_run_transfer_across_pk_bridge,
test_dry_run_transfer_across_pk_bridge, test_parachain_is_trusted_teleporter,
test_parachain_is_trusted_teleporter_for_relay, test_relay_is_trusted_teleporter,
xcm_emulator::{
assert_expected_events, bx, Chain, Parachain as Para, RelayChain as Relay, TestExt,
},
Original file line number Diff line number Diff line change
@@ -537,5 +537,9 @@ fn send_back_wnds_from_penpal_rococo_through_asset_hub_rococo_to_asset_hub_weste

#[test]
fn dry_run_transfer_to_westend_sends_xcm_to_bridge_hub() {
test_dry_run_transfer_across_pk_bridge!(AssetHubRococo, BridgeHubRococo, asset_hub_westend_location());
test_dry_run_transfer_across_pk_bridge!(
AssetHubRococo,
BridgeHubRococo,
asset_hub_westend_location()
);
}
Original file line number Diff line number Diff line change
@@ -32,8 +32,8 @@ mod imports {
pub use emulated_integration_tests_common::{
accounts::ALICE,
impls::Inspect,
test_parachain_is_trusted_teleporter, test_parachain_is_trusted_teleporter_for_relay,
test_relay_is_trusted_teleporter, test_dry_run_transfer_across_pk_bridge,
test_dry_run_transfer_across_pk_bridge, test_parachain_is_trusted_teleporter,
test_parachain_is_trusted_teleporter_for_relay, test_relay_is_trusted_teleporter,
xcm_emulator::{
assert_expected_events, bx, Chain, Parachain as Para, RelayChain as Relay, TestExt,
},
Original file line number Diff line number Diff line change
@@ -557,5 +557,9 @@ fn send_back_rocs_from_penpal_westend_through_asset_hub_westend_to_asset_hub_roc

#[test]
fn dry_run_transfer_to_rococo_sends_xcm_to_bridge_hub() {
test_dry_run_transfer_across_pk_bridge!(AssetHubWestend, BridgeHubWestend, asset_hub_rococo_location());
test_dry_run_transfer_across_pk_bridge!(
AssetHubWestend,
BridgeHubWestend,
asset_hub_rococo_location()
);
}