mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-30 07:01:03 +00:00
c284a9312a
## Problem This PR addresses the issue with testnet AssetHub builds, which was discovered during the execution of `bot bench`. https://gitlab.parity.io/parity/mirrors/polkadot-sdk/-/jobs/4038738 ``` Compiling asset-hub-rococo-runtime-wasm v1.0.0 (/builds/parity/mirrors/polkadot-sdk/target/production/wbuild/asset-hub-rococo-runtime) warning: Linking globals named 'Core_version': symbol multiply defined! error: failed to load bitcode of module "rococo_runtime-8799ee884447805a.rococo_runtime.0bc572b8-cgu.0.rcgu.o": warning: `asset-hub-rococo-runtime-wasm` (lib) generated 1 warning error: could not compile `asset-hub-rococo-runtime-wasm` (lib) due to previous error; 1 warning emitted ``` https://gitlab.parity.io/parity/mirrors/polkadot-sdk/-/jobs/4038739 ``` Compiling asset-hub-westend-runtime-wasm v1.0.0 (/builds/parity/mirrors/polkadot-sdk/target/production/wbuild/asset-hub-westend-runtime) warning: Linking globals named 'Core_version': symbol multiply defined! error: failed to load bitcode of module "westend_runtime-86d7844430f97d5c.westend_runtime.b7678d03-cgu.0.rcgu.o": warning: `asset-hub-westend-runtime-wasm` (lib) generated 1 warning error: could not compile `asset-hub-westend-runtime-wasm` (lib) due to previous error; 1 warning emitted ``` ## Solution - Removed dependencies on `rococo-runtime` and `westend-runtime` introduced by [this PR](https://github.com/paritytech/polkadot-sdk/pull/1234/files#diff-a86375df98e04ca3cce1ea35c40257a222e2d5087f5f528ff33307678b78dc2dR534-R550). - Replaced `<rococo_runtime::Treasury as PalletInfoAccess>::index()` with `rococo_runtime_constants::TREASURY_PALLET_ID`. - Added `check_treasury_pallet_id` to the relay runtimes to ensure that the constant is aligned with the pallet id. - Added "Rococo Treasury" to the waived locations (that will not be charged fees in the executor) for `BridgeHubRococo` (to be aligned with AssetHubs). ## References [Full element discussion here](https://matrix.to/#/!JUeaZUiYbdrvzvtwSL:parity.io/$2PnjYMsWRjR7M3oOfGuRI0XkjdoqJLtRcAPVcDLuLVg?via=parity.io&via=web3.foundation). --------- Co-authored-by: command-bot <>
242 lines
12 KiB
TOML
242 lines
12 KiB
TOML
[package]
|
|
name = "asset-hub-rococo-runtime"
|
|
version = "0.9.420"
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
description = "Rococo variant of Asset Hub parachain runtime"
|
|
|
|
[dependencies]
|
|
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "max-encoded-len"] }
|
|
hex-literal = { version = "0.4.1" }
|
|
log = { version = "0.4.20", default-features = false }
|
|
scale-info = { version = "2.10.0", default-features = false, features = ["derive"] }
|
|
smallvec = "1.11.0"
|
|
|
|
# Substrate
|
|
frame-benchmarking = { path = "../../../../../substrate/frame/benchmarking", default-features = false, optional = true}
|
|
frame-executive = { path = "../../../../../substrate/frame/executive", default-features = false}
|
|
frame-support = { path = "../../../../../substrate/frame/support", default-features = false}
|
|
frame-system = { path = "../../../../../substrate/frame/system", default-features = false}
|
|
frame-system-benchmarking = { path = "../../../../../substrate/frame/system/benchmarking", default-features = false, optional = true}
|
|
frame-system-rpc-runtime-api = { path = "../../../../../substrate/frame/system/rpc/runtime-api", default-features = false}
|
|
frame-try-runtime = { path = "../../../../../substrate/frame/try-runtime", default-features = false, optional = true}
|
|
pallet-asset-conversion-tx-payment = { path = "../../../../../substrate/frame/transaction-payment/asset-conversion-tx-payment", default-features = false}
|
|
pallet-assets = { path = "../../../../../substrate/frame/assets", default-features = false}
|
|
pallet-asset-conversion = { path = "../../../../../substrate/frame/asset-conversion", default-features = false}
|
|
pallet-aura = { path = "../../../../../substrate/frame/aura", default-features = false}
|
|
pallet-authorship = { path = "../../../../../substrate/frame/authorship", default-features = false}
|
|
pallet-balances = { path = "../../../../../substrate/frame/balances", default-features = false}
|
|
pallet-multisig = { path = "../../../../../substrate/frame/multisig", default-features = false}
|
|
pallet-nft-fractionalization = { path = "../../../../../substrate/frame/nft-fractionalization", default-features = false}
|
|
pallet-nfts = { path = "../../../../../substrate/frame/nfts", default-features = false}
|
|
pallet-nfts-runtime-api = { path = "../../../../../substrate/frame/nfts/runtime-api", default-features = false}
|
|
pallet-proxy = { path = "../../../../../substrate/frame/proxy", default-features = false}
|
|
pallet-session = { path = "../../../../../substrate/frame/session", default-features = false}
|
|
pallet-state-trie-migration = { path = "../../../../../substrate/frame/state-trie-migration", default-features = false, optional = true }
|
|
pallet-timestamp = { path = "../../../../../substrate/frame/timestamp", default-features = false}
|
|
pallet-transaction-payment = { path = "../../../../../substrate/frame/transaction-payment", default-features = false}
|
|
pallet-transaction-payment-rpc-runtime-api = { path = "../../../../../substrate/frame/transaction-payment/rpc/runtime-api", default-features = false}
|
|
pallet-uniques = { path = "../../../../../substrate/frame/uniques", default-features = false}
|
|
pallet-utility = { path = "../../../../../substrate/frame/utility", default-features = false}
|
|
sp-api = { path = "../../../../../substrate/primitives/api", default-features = false}
|
|
sp-block-builder = { path = "../../../../../substrate/primitives/block-builder", default-features = false}
|
|
sp-consensus-aura = { path = "../../../../../substrate/primitives/consensus/aura", default-features = false}
|
|
sp-core = { path = "../../../../../substrate/primitives/core", default-features = false}
|
|
sp-inherents = { path = "../../../../../substrate/primitives/inherents", default-features = false}
|
|
sp-offchain = { path = "../../../../../substrate/primitives/offchain", default-features = false}
|
|
sp-runtime = { path = "../../../../../substrate/primitives/runtime", default-features = false}
|
|
sp-session = { path = "../../../../../substrate/primitives/session", default-features = false}
|
|
sp-std = { path = "../../../../../substrate/primitives/std", default-features = false}
|
|
sp-storage = { path = "../../../../../substrate/primitives/storage", default-features = false}
|
|
sp-transaction-pool = { path = "../../../../../substrate/primitives/transaction-pool", default-features = false}
|
|
sp-version = { path = "../../../../../substrate/primitives/version", default-features = false}
|
|
sp-weights = { path = "../../../../../substrate/primitives/weights", default-features = false}
|
|
# num-traits feature needed for dex integer sq root:
|
|
primitive-types = { version = "0.12.1", default-features = false, features = ["codec", "scale-info", "num-traits"] }
|
|
|
|
# Polkadot
|
|
rococo-runtime-constants = { path = "../../../../../polkadot/runtime/rococo/constants", default-features = false}
|
|
pallet-xcm = { path = "../../../../../polkadot/xcm/pallet-xcm", default-features = false}
|
|
pallet-xcm-benchmarks = { path = "../../../../../polkadot/xcm/pallet-xcm-benchmarks", default-features = false, optional = true }
|
|
polkadot-core-primitives = { path = "../../../../../polkadot/core-primitives", default-features = false}
|
|
polkadot-parachain-primitives = { path = "../../../../../polkadot/parachain", default-features = false}
|
|
polkadot-runtime-common = { path = "../../../../../polkadot/runtime/common", default-features = false}
|
|
xcm = { package = "staging-xcm", path = "../../../../../polkadot/xcm", default-features = false}
|
|
xcm-builder = { package = "staging-xcm-builder", path = "../../../../../polkadot/xcm/xcm-builder", default-features = false}
|
|
xcm-executor = { package = "staging-xcm-executor", path = "../../../../../polkadot/xcm/xcm-executor", default-features = false}
|
|
|
|
# Cumulus
|
|
cumulus-pallet-aura-ext = { path = "../../../../pallets/aura-ext", default-features = false }
|
|
cumulus-pallet-dmp-queue = { path = "../../../../pallets/dmp-queue", default-features = false }
|
|
cumulus-pallet-parachain-system = { path = "../../../../pallets/parachain-system", default-features = false, features = ["parameterized-consensus-hook",] }
|
|
cumulus-pallet-session-benchmarking = { path = "../../../../pallets/session-benchmarking", default-features = false}
|
|
cumulus-pallet-xcm = { path = "../../../../pallets/xcm", default-features = false }
|
|
cumulus-pallet-xcmp-queue = { path = "../../../../pallets/xcmp-queue", default-features = false, features = ["bridging"] }
|
|
cumulus-primitives-core = { path = "../../../../primitives/core", default-features = false }
|
|
cumulus-primitives-utility = { path = "../../../../primitives/utility", default-features = false }
|
|
pallet-collator-selection = { path = "../../../../pallets/collator-selection", default-features = false }
|
|
parachain-info = { path = "../../../pallets/parachain-info", default-features = false }
|
|
parachains-common = { path = "../../../common", default-features = false }
|
|
assets-common = { path = "../common", default-features = false }
|
|
|
|
# Bridges
|
|
pallet-xcm-bridge-hub-router = { path = "../../../../../bridges/modules/xcm-bridge-hub-router", default-features = false }
|
|
bp-asset-hub-rococo = { path = "../../../../../bridges/primitives/chain-asset-hub-rococo", default-features = false }
|
|
bp-asset-hub-wococo = { path = "../../../../../bridges/primitives/chain-asset-hub-wococo", default-features = false }
|
|
bp-bridge-hub-rococo = { path = "../../../../../bridges/primitives/chain-bridge-hub-rococo", default-features = false }
|
|
bp-bridge-hub-wococo = { path = "../../../../../bridges/primitives/chain-bridge-hub-wococo", default-features = false }
|
|
|
|
[dev-dependencies]
|
|
asset-test-utils = { path = "../test-utils" }
|
|
|
|
[build-dependencies]
|
|
substrate-wasm-builder = { path = "../../../../../substrate/utils/wasm-builder", optional = true }
|
|
|
|
[features]
|
|
default = [ "std" ]
|
|
# When enabled the `state_version` is set to `1`.
|
|
# This means that the chain will start using the new state format. The migration is lazy, so
|
|
# it requires to write a storage value to use the new state format. To migrate all the other
|
|
# storage values that aren't touched the state migration pallet is added as well.
|
|
# This pallet will migrate the entire state, controlled through some account.
|
|
#
|
|
# This feature should be removed when the main-net will be migrated.
|
|
state-trie-version-1 = [ "pallet-state-trie-migration" ]
|
|
runtime-benchmarks = [
|
|
"assets-common/runtime-benchmarks",
|
|
"cumulus-pallet-parachain-system/runtime-benchmarks",
|
|
"cumulus-pallet-session-benchmarking/runtime-benchmarks",
|
|
"cumulus-pallet-xcmp-queue/runtime-benchmarks",
|
|
"cumulus-primitives-utility/runtime-benchmarks",
|
|
"frame-benchmarking/runtime-benchmarks",
|
|
"frame-support/runtime-benchmarks",
|
|
"frame-system-benchmarking/runtime-benchmarks",
|
|
"frame-system/runtime-benchmarks",
|
|
"pallet-asset-conversion/runtime-benchmarks",
|
|
"pallet-assets/runtime-benchmarks",
|
|
"pallet-balances/runtime-benchmarks",
|
|
"pallet-collator-selection/runtime-benchmarks",
|
|
"pallet-multisig/runtime-benchmarks",
|
|
"pallet-nft-fractionalization/runtime-benchmarks",
|
|
"pallet-nfts/runtime-benchmarks",
|
|
"pallet-proxy/runtime-benchmarks",
|
|
"pallet-state-trie-migration/runtime-benchmarks",
|
|
"pallet-timestamp/runtime-benchmarks",
|
|
"pallet-uniques/runtime-benchmarks",
|
|
"pallet-utility/runtime-benchmarks",
|
|
"pallet-xcm-benchmarks/runtime-benchmarks",
|
|
"pallet-xcm-bridge-hub-router/runtime-benchmarks",
|
|
"pallet-xcm/runtime-benchmarks",
|
|
"parachains-common/runtime-benchmarks",
|
|
"polkadot-parachain-primitives/runtime-benchmarks",
|
|
"polkadot-runtime-common/runtime-benchmarks",
|
|
"sp-runtime/runtime-benchmarks",
|
|
"xcm-builder/runtime-benchmarks",
|
|
"xcm-executor/runtime-benchmarks",
|
|
]
|
|
try-runtime = [
|
|
"cumulus-pallet-aura-ext/try-runtime",
|
|
"cumulus-pallet-dmp-queue/try-runtime",
|
|
"cumulus-pallet-parachain-system/try-runtime",
|
|
"cumulus-pallet-xcm/try-runtime",
|
|
"cumulus-pallet-xcmp-queue/try-runtime",
|
|
"frame-executive/try-runtime",
|
|
"frame-support/try-runtime",
|
|
"frame-system/try-runtime",
|
|
"frame-try-runtime/try-runtime",
|
|
"pallet-asset-conversion-tx-payment/try-runtime",
|
|
"pallet-asset-conversion/try-runtime",
|
|
"pallet-assets/try-runtime",
|
|
"pallet-aura/try-runtime",
|
|
"pallet-authorship/try-runtime",
|
|
"pallet-balances/try-runtime",
|
|
"pallet-collator-selection/try-runtime",
|
|
"pallet-multisig/try-runtime",
|
|
"pallet-nft-fractionalization/try-runtime",
|
|
"pallet-nfts/try-runtime",
|
|
"pallet-proxy/try-runtime",
|
|
"pallet-session/try-runtime",
|
|
"pallet-state-trie-migration/try-runtime",
|
|
"pallet-timestamp/try-runtime",
|
|
"pallet-transaction-payment/try-runtime",
|
|
"pallet-uniques/try-runtime",
|
|
"pallet-utility/try-runtime",
|
|
"pallet-xcm-bridge-hub-router/try-runtime",
|
|
"pallet-xcm/try-runtime",
|
|
"parachain-info/try-runtime",
|
|
"polkadot-runtime-common/try-runtime",
|
|
"sp-runtime/try-runtime",
|
|
]
|
|
std = [
|
|
"assets-common/std",
|
|
"bp-asset-hub-rococo/std",
|
|
"bp-asset-hub-wococo/std",
|
|
"bp-bridge-hub-rococo/std",
|
|
"bp-bridge-hub-wococo/std",
|
|
"codec/std",
|
|
"cumulus-pallet-aura-ext/std",
|
|
"cumulus-pallet-dmp-queue/std",
|
|
"cumulus-pallet-parachain-system/std",
|
|
"cumulus-pallet-session-benchmarking/std",
|
|
"cumulus-pallet-xcm/std",
|
|
"cumulus-pallet-xcmp-queue/std",
|
|
"cumulus-primitives-core/std",
|
|
"cumulus-primitives-utility/std",
|
|
"frame-benchmarking?/std",
|
|
"frame-executive/std",
|
|
"frame-support/std",
|
|
"frame-system-benchmarking?/std",
|
|
"frame-system-rpc-runtime-api/std",
|
|
"frame-system/std",
|
|
"frame-try-runtime?/std",
|
|
"log/std",
|
|
"pallet-asset-conversion-tx-payment/std",
|
|
"pallet-asset-conversion/std",
|
|
"pallet-assets/std",
|
|
"pallet-aura/std",
|
|
"pallet-authorship/std",
|
|
"pallet-balances/std",
|
|
"pallet-collator-selection/std",
|
|
"pallet-multisig/std",
|
|
"pallet-nft-fractionalization/std",
|
|
"pallet-nfts-runtime-api/std",
|
|
"pallet-nfts/std",
|
|
"pallet-proxy/std",
|
|
"pallet-session/std",
|
|
"pallet-state-trie-migration/std",
|
|
"pallet-timestamp/std",
|
|
"pallet-transaction-payment-rpc-runtime-api/std",
|
|
"pallet-transaction-payment/std",
|
|
"pallet-uniques/std",
|
|
"pallet-utility/std",
|
|
"pallet-xcm-benchmarks?/std",
|
|
"pallet-xcm-bridge-hub-router/std",
|
|
"pallet-xcm/std",
|
|
"parachain-info/std",
|
|
"parachains-common/std",
|
|
"polkadot-core-primitives/std",
|
|
"polkadot-parachain-primitives/std",
|
|
"polkadot-runtime-common/std",
|
|
"rococo-runtime-constants/std",
|
|
"scale-info/std",
|
|
"sp-api/std",
|
|
"sp-block-builder/std",
|
|
"sp-consensus-aura/std",
|
|
"sp-core/std",
|
|
"sp-inherents/std",
|
|
"sp-offchain/std",
|
|
"sp-runtime/std",
|
|
"sp-session/std",
|
|
"sp-std/std",
|
|
"sp-storage/std",
|
|
"sp-transaction-pool/std",
|
|
"sp-version/std",
|
|
"sp-weights/std",
|
|
"substrate-wasm-builder",
|
|
"xcm-builder/std",
|
|
"xcm-executor/std",
|
|
"xcm/std",
|
|
]
|
|
|
|
experimental = [ "pallet-aura/experimental" ]
|