git.delta.rocks / unique-network / refs/commits / f5faed258f1b

difftreelog

fix make check

Yaroslav Bolyukin2023-11-17parent: #7f81f6c.patch.diff
in: master

8 files changed

modifiedCargo.lockdiffbeforeafterboth
10160 "pallet-xcm",10160 "pallet-xcm",
10161 "parity-scale-codec",10161 "parity-scale-codec",
10162 "polkadot-parachain-primitives",10162 "polkadot-parachain-primitives",
10163 "polkadot-runtime-common",
10163 "precompile-utils-macro",10164 "precompile-utils-macro",
10164 "scale-info",10165 "scale-info",
10165 "serde",10166 "serde",
15037 "pallet-xcm",15038 "pallet-xcm",
15038 "parity-scale-codec",15039 "parity-scale-codec",
15039 "polkadot-parachain-primitives",15040 "polkadot-parachain-primitives",
15041 "polkadot-runtime-common",
15040 "precompile-utils-macro",15042 "precompile-utils-macro",
15041 "scale-info",15043 "scale-info",
15042 "serde",15044 "serde",
modifiedCargo.tomldiffbeforeafterboth
132pallet-treasury = { default-features = false, version = "24.0.0" }132pallet-treasury = { default-features = false, version = "24.0.0" }
133pallet-utility = { default-features = false, version = "25.0.0" }133pallet-utility = { default-features = false, version = "25.0.0" }
134pallet-xcm = { default-features = false , version = "4.0.0" }134pallet-xcm = { default-features = false, version = "4.0.0" }
135staging-parachain-info = { default-features = false, version = "0.4.0" }
136parity-scale-codec = { version = "3.6.5", features = ["derive"], default-features = false }135parity-scale-codec = { version = "3.6.5", features = ["derive"], default-features = false }
137polkadot-cli = "4.0.0"136polkadot-cli = "4.0.0"
138polkadot-parachain-primitives = { default-features = false , version = "3.0.0" }137polkadot-parachain-primitives = { default-features = false, version = "3.0.0" }
138polkadot-primitives = "4.0.0"
139polkadot-runtime-common = { default-features = false , version = "4.0.0" }139polkadot-runtime-common = { default-features = false, version = "4.0.0" }
140polkadot-primitives = "4.0.0"
141polkadot-service = "4.0.0"140polkadot-service = "4.0.0"
142sc-basic-authorship = "0.31.0"141sc-basic-authorship = "0.31.0"
143sc-chain-spec = "24.0.0"142sc-chain-spec = "24.0.0"
179sp-trie = { default-features = false, version = "26.0.0" }178sp-trie = { default-features = false, version = "26.0.0" }
180sp-version = { default-features = false, version = "26.0.0" }179sp-version = { default-features = false, version = "26.0.0" }
181sp-weights = { default-features = false, version = "24.0.0" }180sp-weights = { default-features = false, version = "24.0.0" }
181staging-parachain-info = { default-features = false, version = "0.4.0" }
182staging-xcm = { default-features = false , version = "4.0.0" }182staging-xcm = { default-features = false, version = "4.0.0" }
183staging-xcm-builder = { default-features = false , version = "4.0.0" }183staging-xcm-builder = { default-features = false, version = "4.0.0" }
184staging-xcm-executor = { default-features = false , version = "4.0.0" }184staging-xcm-executor = { default-features = false, version = "4.0.0" }
modifiedpallets/inflation/Cargo.tomldiffbeforeafterboth
1616
17[features]17[features]
18default = ['std']18default = ['std']
19fast-inflation = []
19runtime-benchmarks = ['frame-benchmarking']20runtime-benchmarks = ['frame-benchmarking']
20std = [21std = [
21 'frame-benchmarking/std',22 'frame-benchmarking/std',
27 'sp-std/std',28 'sp-std/std',
28]29]
29try-runtime = ["frame-support/try-runtime"]30try-runtime = ["frame-support/try-runtime"]
30fast-inflation = []
3131
32[dependencies]32[dependencies]
33parity-scale-codec = { workspace = true }33parity-scale-codec = { workspace = true }
modifiedruntime/common/config/substrate.rsdiffbeforeafterboth
241 type Paymaster = PayFromAccount<Balances, TreasuryAccount>;241 type Paymaster = PayFromAccount<Balances, TreasuryAccount>;
242 type BalanceConverter = UnityAssetBalanceConversion;242 type BalanceConverter = UnityAssetBalanceConversion;
243 type PayoutPeriod = ConstU32<10>;243 type PayoutPeriod = ConstU32<10>;
244 #[cfg(feature = "runtime-benchmarks")]
245 type BenchmarkHelper = ();
244}246}
245247
246impl pallet_sudo::Config for Runtime {248impl pallet_sudo::Config for Runtime {
modifiedruntime/common/tests/xcm.rsdiffbeforeafterboth
37 Box::new(VersionedXcm::from(Xcm(vec![Transact {37 Box::new(VersionedXcm::from(Xcm(vec![Transact {
38 origin_kind: OriginKind::Native,38 origin_kind: OriginKind::Native,
39 require_weight_at_most: Weight::from_parts(1000, 1000),39 require_weight_at_most: Weight::from_parts(1000, 1000),
40 call: RuntimeCall::Balances(pallet_balances::Call::<Runtime>::transfer {40 call: RuntimeCall::Balances(pallet_balances::Call::<Runtime>::transfer_keep_alive {
41 dest: BOB.into(),41 dest: BOB.into(),
42 value: INITIAL_BALANCE / 2,42 value: INITIAL_BALANCE / 2,
43 })43 })
modifiedruntime/opal/Cargo.tomldiffbeforeafterboth
61 'pallet-unique/runtime-benchmarks',61 'pallet-unique/runtime-benchmarks',
62 'pallet-utility/runtime-benchmarks',62 'pallet-utility/runtime-benchmarks',
63 'pallet-xcm/runtime-benchmarks',63 'pallet-xcm/runtime-benchmarks',
64 'polkadot-runtime-common/runtime-benchmarks',
64 'sp-runtime/runtime-benchmarks',65 'sp-runtime/runtime-benchmarks',
65 'staging-xcm-builder/runtime-benchmarks',66 'staging-xcm-builder/runtime-benchmarks',
66]67]
126 'pallet-treasury/std',127 'pallet-treasury/std',
127 'pallet-unique/std',128 'pallet-unique/std',
128 'pallet-utility/std',129 'pallet-utility/std',
129 'staging-parachain-info/std',
130 'polkadot-runtime-common/std',130 'polkadot-runtime-common/std',
131 'serde',131 'serde',
132 'sp-api/std',132 'sp-api/std',
141 'sp-storage/std',141 'sp-storage/std',
142 'sp-transaction-pool/std',142 'sp-transaction-pool/std',
143 'sp-version/std',143 'sp-version/std',
144 'staging-parachain-info/std',
144 'staging-xcm-builder/std',145 'staging-xcm-builder/std',
145 'staging-xcm-executor/std',146 'staging-xcm-executor/std',
146 'staging-xcm/std',147 'staging-xcm/std',
221 'pallet-unique/try-runtime',222 'pallet-unique/try-runtime',
222 'pallet-utility/try-runtime',223 'pallet-utility/try-runtime',
223 'pallet-xcm/try-runtime',224 'pallet-xcm/try-runtime',
225 'polkadot-runtime-common/try-runtime',
224 'staging-parachain-info/try-runtime',226 'staging-parachain-info/try-runtime',
225 'polkadot-runtime-common/try-runtime',
226]227]
227228
228app-promotion = []229app-promotion = []
229collator-selection = []230collator-selection = []
231fast-inflation = []
230foreign-assets = []232foreign-assets = []
231gov-test-timings = []233gov-test-timings = []
232governance = []234governance = []
233lookahead = ['cumulus-pallet-parachain-system/parameterized-consensus-hook', 'pallet-aura/experimental']235lookahead = ['cumulus-pallet-parachain-system/parameterized-consensus-hook', 'pallet-aura/experimental']
234preimage = []236preimage = []
235refungible = []237refungible = []
236session-test-timings = []238session-test-timings = []
237fast-inflation = []
238239
239################################################################################240################################################################################
240# local dependencies241# local dependencies
271pallet-treasury = { workspace = true }272pallet-treasury = { workspace = true }
272pallet-utility = { workspace = true }273pallet-utility = { workspace = true }
273pallet-xcm = { workspace = true }274pallet-xcm = { workspace = true }
274staging-parachain-info = { workspace = true }
275parity-scale-codec = { workspace = true }275parity-scale-codec = { workspace = true }
276polkadot-parachain-primitives = { workspace = true }276polkadot-parachain-primitives = { workspace = true }
277polkadot-runtime-common = { workspace = true }277polkadot-runtime-common = { workspace = true }
290sp-storage = { workspace = true }290sp-storage = { workspace = true }
291sp-transaction-pool = { workspace = true }291sp-transaction-pool = { workspace = true }
292sp-version = { workspace = true }292sp-version = { workspace = true }
293staging-parachain-info = { workspace = true }
293staging-xcm = { workspace = true }294staging-xcm = { workspace = true }
294staging-xcm-builder = { workspace = true }295staging-xcm-builder = { workspace = true }
295staging-xcm-executor = { workspace = true }296staging-xcm-executor = { workspace = true }
modifiedruntime/quartz/Cargo.tomldiffbeforeafterboth
58 'pallet-unique/runtime-benchmarks',58 'pallet-unique/runtime-benchmarks',
59 'pallet-utility/runtime-benchmarks',59 'pallet-utility/runtime-benchmarks',
60 'pallet-xcm/runtime-benchmarks',60 'pallet-xcm/runtime-benchmarks',
61 'polkadot-runtime-common/runtime-benchmarks',
61 'sp-runtime/runtime-benchmarks',62 'sp-runtime/runtime-benchmarks',
62 'staging-xcm-builder/runtime-benchmarks',63 'staging-xcm-builder/runtime-benchmarks',
63]64]
126 'pallet-treasury/std',127 'pallet-treasury/std',
127 'pallet-unique/std',128 'pallet-unique/std',
128 'pallet-utility/std',129 'pallet-utility/std',
129 'staging-parachain-info/std',130 'polkadot-runtime-common/std',
130 'serde',131 'serde',
131 'sp-api/std',132 'sp-api/std',
132 'sp-block-builder/std',133 'sp-block-builder/std',
139 'sp-std/std',140 'sp-std/std',
140 'sp-transaction-pool/std',141 'sp-transaction-pool/std',
141 'sp-version/std',142 'sp-version/std',
143 'staging-parachain-info/std',
142 'staging-xcm-builder/std',144 'staging-xcm-builder/std',
143 'staging-xcm-executor/std',145 'staging-xcm-executor/std',
144 'staging-xcm/std',146 'staging-xcm/std',
210 'pallet-unique/try-runtime',212 'pallet-unique/try-runtime',
211 'pallet-utility/try-runtime',213 'pallet-utility/try-runtime',
212 'pallet-xcm/try-runtime',214 'pallet-xcm/try-runtime',
215 'polkadot-runtime-common/try-runtime',
213 'staging-parachain-info/try-runtime',216 'staging-parachain-info/try-runtime',
214]217]
215218
216app-promotion = []219app-promotion = []
217collator-selection = []220collator-selection = []
221fast-inflation = []
218foreign-assets = []222foreign-assets = []
219gov-test-timings = []223gov-test-timings = []
220governance = []224governance = []
221preimage = []225preimage = []
222refungible = []226refungible = []
223session-test-timings = []227session-test-timings = []
224fast-inflation = []
225228
226################################################################################229################################################################################
227# local dependencies230# local dependencies
257pallet-treasury = { workspace = true }260pallet-treasury = { workspace = true }
258pallet-utility = { workspace = true }261pallet-utility = { workspace = true }
259pallet-xcm = { workspace = true }262pallet-xcm = { workspace = true }
260staging-parachain-info = { workspace = true }263parity-scale-codec = { workspace = true }
261parity-scale-codec = { workspace = true }264polkadot-parachain-primitives = { workspace = true }
262polkadot-parachain-primitives = { workspace = true }265polkadot-runtime-common = { workspace = true }
263smallvec = { workspace = true }266smallvec = { workspace = true }
264sp-api = { workspace = true }267sp-api = { workspace = true }
265sp-arithmetic = { workspace = true }268sp-arithmetic = { workspace = true }
275sp-storage = { workspace = true }278sp-storage = { workspace = true }
276sp-transaction-pool = { workspace = true }279sp-transaction-pool = { workspace = true }
277sp-version = { workspace = true }280sp-version = { workspace = true }
281staging-parachain-info = { workspace = true }
278staging-xcm = { workspace = true }282staging-xcm = { workspace = true }
279staging-xcm-builder = { workspace = true }283staging-xcm-builder = { workspace = true }
280staging-xcm-executor = { workspace = true }284staging-xcm-executor = { workspace = true }
modifiedruntime/unique/Cargo.tomldiffbeforeafterboth
55 'pallet-unique/runtime-benchmarks',55 'pallet-unique/runtime-benchmarks',
56 'pallet-utility/runtime-benchmarks',56 'pallet-utility/runtime-benchmarks',
57 'pallet-xcm/runtime-benchmarks',57 'pallet-xcm/runtime-benchmarks',
58 'polkadot-runtime-common/runtime-benchmarks',
58 'sp-runtime/runtime-benchmarks',59 'sp-runtime/runtime-benchmarks',
59 'staging-xcm-builder/runtime-benchmarks',60 'staging-xcm-builder/runtime-benchmarks',
60 'up-data-structs/runtime-benchmarks',61 'up-data-structs/runtime-benchmarks',
124 'pallet-treasury/std',125 'pallet-treasury/std',
125 'pallet-unique/std',126 'pallet-unique/std',
126 'pallet-utility/std',127 'pallet-utility/std',
127 'staging-parachain-info/std',128 'polkadot-runtime-common/std',
128 'sp-api/std',129 'sp-api/std',
129 'sp-block-builder/std',130 'sp-block-builder/std',
130 'sp-core/std',131 'sp-core/std',
136 'sp-std/std',137 'sp-std/std',
137 'sp-transaction-pool/std',138 'sp-transaction-pool/std',
138 'sp-version/std',139 'sp-version/std',
140 'staging-parachain-info/std',
139 'staging-xcm-builder/std',141 'staging-xcm-builder/std',
140 'staging-xcm-executor/std',142 'staging-xcm-executor/std',
141 'staging-xcm/std',143 'staging-xcm/std',
212 'pallet-unique/try-runtime',214 'pallet-unique/try-runtime',
213 'pallet-utility/try-runtime',215 'pallet-utility/try-runtime',
214 'pallet-xcm/try-runtime',216 'pallet-xcm/try-runtime',
217 'polkadot-runtime-common/try-runtime',
215 'staging-parachain-info/try-runtime',218 'staging-parachain-info/try-runtime',
216]219]
217unique-runtime = ['app-promotion', 'foreign-assets', 'refungible', 'governance', 'preimage']220unique-runtime = ['app-promotion', 'foreign-assets', 'governance', 'preimage', 'refungible']
218221
219app-promotion = []222app-promotion = []
220collator-selection = []223collator-selection = []
224fast-inflation = []
221foreign-assets = []225foreign-assets = []
222gov-test-timings = []226gov-test-timings = []
223governance = []227governance = []
224preimage = []228preimage = []
225refungible = []229refungible = []
226session-test-timings = []230session-test-timings = []
227fast-inflation = []
228231
229################################################################################232################################################################################
230# local dependencies233# local dependencies
260pallet-treasury = { workspace = true }263pallet-treasury = { workspace = true }
261pallet-utility = { workspace = true }264pallet-utility = { workspace = true }
262pallet-xcm = { workspace = true }265pallet-xcm = { workspace = true }
263staging-parachain-info = { workspace = true }266parity-scale-codec = { workspace = true }
264parity-scale-codec = { workspace = true }267polkadot-parachain-primitives = { workspace = true }
265polkadot-parachain-primitives = { workspace = true }268polkadot-runtime-common = { workspace = true }
266smallvec = { workspace = true }269smallvec = { workspace = true }
267sp-api = { workspace = true }270sp-api = { workspace = true }
268sp-arithmetic = { workspace = true }271sp-arithmetic = { workspace = true }
278sp-storage = { workspace = true }281sp-storage = { workspace = true }
279sp-transaction-pool = { workspace = true }282sp-transaction-pool = { workspace = true }
280sp-version = { workspace = true }283sp-version = { workspace = true }
284staging-parachain-info = { workspace = true }
281staging-xcm = { workspace = true }285staging-xcm = { workspace = true }
282staging-xcm-builder = { workspace = true }286staging-xcm-builder = { workspace = true }
283staging-xcm-executor = { workspace = true }287staging-xcm-executor = { workspace = true }