Support xcm local execution in xcm-handler. (#357)

* Support xcm local execution in xcm handler.

* Add docs.
This commit is contained in:
Shaun Wang
2021-03-10 10:57:44 +13:00
committed by GitHub
parent 20e5dfd37a
commit 2b73fcf45d
4 changed files with 27 additions and 2 deletions
+3 -1
View File
@@ -16,6 +16,7 @@ frame-system = { git = "https://github.com/paritytech/substrate", default-featur
# Polkadot Dependencies
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "master" }
# Cumulus Dependencies
cumulus-primitives-core = { path = "../../primitives/core", default-features = false }
@@ -29,5 +30,6 @@ std = [
"frame-support/std",
"frame-system/std",
"cumulus-primitives-core/std",
"xcm/std"
"xcm/std",
"xcm-executor/std",
]