mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-28 07:27:55 +00:00
11b5354fd3
The `fee` should be calculated with the reanchored asset, otherwise it could lead to a failure where the set aside fee ends up not being enough. @acatangiu --------- Co-authored-by: Adrian Catangiu <adrian@parity.io>
36 lines
1.5 KiB
TOML
36 lines
1.5 KiB
TOML
[package]
|
|
name = "xcm-executor-integration-tests"
|
|
description = "Integration tests for the XCM Executor"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
version = "1.0.0"
|
|
publish = false
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.6.1" }
|
|
frame-support = { path = "../../../../substrate/frame/support", default-features = false }
|
|
frame-system = { path = "../../../../substrate/frame/system" }
|
|
futures = "0.3.21"
|
|
pallet-transaction-payment = { path = "../../../../substrate/frame/transaction-payment" }
|
|
pallet-xcm = { path = "../../pallet-xcm" }
|
|
polkadot-test-client = { path = "../../../node/test/client" }
|
|
polkadot-test-runtime = { path = "../../../runtime/test-runtime" }
|
|
polkadot-test-service = { path = "../../../node/test/service" }
|
|
polkadot-service = { path = "../../../node/service" }
|
|
sp-consensus = { path = "../../../../substrate/primitives/consensus/common" }
|
|
sp-keyring = { path = "../../../../substrate/primitives/keyring" }
|
|
sp-runtime = { path = "../../../../substrate/primitives/runtime", default-features = false }
|
|
sp-state-machine = { path = "../../../../substrate/primitives/state-machine" }
|
|
xcm = { package = "staging-xcm", path = "../..", default-features = false }
|
|
xcm-executor = { package = "staging-xcm-executor", path = ".." }
|
|
sp-tracing = { path = "../../../../substrate/primitives/tracing" }
|
|
sp-core = { path = "../../../../substrate/primitives/core" }
|
|
|
|
[features]
|
|
default = ["std"]
|
|
std = ["frame-support/std", "sp-runtime/std", "xcm/std"]
|