Skip to content

Commit 302d877

Browse files
authored
Merge pull request #45 from interlay/polkadot-v0.9.29
upgrade to polkadot-v0.9.29
2 parents 02ea57b + 2782141 commit 302d877

File tree

28 files changed

+778
-740
lines changed

28 files changed

+778
-740
lines changed

Cargo.lock

+369-326
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55
It should at least work until the following commits
66

77
- rustc 1.62.0-nightly (ecd44958e 2022-05-10)
8-
- Polkadot release-v0.9.28
9-
- Cumulus polkadot-v0.9.28
10-
- Substrate polkadot-v0.9.28
8+
- Polkadot release-v0.9.29
9+
- Cumulus polkadot-v0.9.29
10+
- Substrate polkadot-v0.9.29
1111

1212

1313
## Precondition

example/.maintain/frame-weight-template.hbs

+12-12
Original file line numberDiff line numberDiff line change
@@ -64,22 +64,22 @@ impl<T: frame_system::Config> WeightInfo for SubstrateWeight<T> {
6464
{{~#each benchmark.components as |c| ~}}
6565
{{~#if (not c.is_used)}}_{{/if}}{{c.name}}: u32, {{/each~}}
6666
) -> Weight {
67-
({{underscore benchmark.base_weight}} as Weight)
67+
Weight::from_ref_time({{underscore benchmark.base_weight}})
6868
{{#each benchmark.component_weight as |cw|}}
6969
// Standard Error: {{underscore cw.error}}
70-
.saturating_add(({{underscore cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight))
70+
.saturating_add(({{underscore cw.slope}} as u64).saturating_mul({{cw.name}} as u64))
7171
{{/each}}
7272
{{#if (ne benchmark.base_reads "0")}}
73-
.saturating_add(T::DbWeight::get().reads({{benchmark.base_reads}} as Weight))
73+
.saturating_add(T::DbWeight::get().reads({{benchmark.base_reads}} as u64))
7474
{{/if}}
7575
{{#each benchmark.component_reads as |cr|}}
76-
.saturating_add(T::DbWeight::get().reads(({{cr.slope}} as Weight).saturating_mul({{cr.name}} as Weight)))
76+
.saturating_add(T::DbWeight::get().reads(({{cr.slope}} as u64).saturating_mul({{cr.name}} as u64)))
7777
{{/each}}
7878
{{#if (ne benchmark.base_writes "0")}}
79-
.saturating_add(T::DbWeight::get().writes({{benchmark.base_writes}} as Weight))
79+
.saturating_add(T::DbWeight::get().writes({{benchmark.base_writes}} as u64))
8080
{{/if}}
8181
{{#each benchmark.component_writes as |cw|}}
82-
.saturating_add(T::DbWeight::get().writes(({{cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight)))
82+
.saturating_add(T::DbWeight::get().writes(({{cw.slope}} as u64).saturating_mul({{cw.name}} as u64)))
8383
{{/each}}
8484
}
8585
{{/each}}
@@ -99,22 +99,22 @@ impl WeightInfo for () {
9999
{{~#each benchmark.components as |c| ~}}
100100
{{~#if (not c.is_used)}}_{{/if}}{{c.name}}: u32, {{/each~}}
101101
) -> Weight {
102-
({{underscore benchmark.base_weight}} as Weight)
102+
Weight::from_ref_time({{underscore benchmark.base_weight}})
103103
{{#each benchmark.component_weight as |cw|}}
104104
// Standard Error: {{underscore cw.error}}
105-
.saturating_add(({{underscore cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight))
105+
.saturating_add(({{underscore cw.slope}} as u64).saturating_mul({{cw.name}} as u64))
106106
{{/each}}
107107
{{#if (ne benchmark.base_reads "0")}}
108-
.saturating_add(RocksDbWeight::get().reads({{benchmark.base_reads}} as Weight))
108+
.saturating_add(RocksDbWeight::get().reads({{benchmark.base_reads}} as u64))
109109
{{/if}}
110110
{{#each benchmark.component_reads as |cr|}}
111-
.saturating_add(RocksDbWeight::get().reads(({{cr.slope}} as Weight).saturating_mul({{cr.name}} as Weight)))
111+
.saturating_add(RocksDbWeight::get().reads(({{cr.slope}} as u64).saturating_mul({{cr.name}} as u64)))
112112
{{/each}}
113113
{{#if (ne benchmark.base_writes "0")}}
114-
.saturating_add(RocksDbWeight::get().writes({{benchmark.base_writes}} as Weight))
114+
.saturating_add(RocksDbWeight::get().writes({{benchmark.base_writes}} as u64))
115115
{{/if}}
116116
{{#each benchmark.component_writes as |cw|}}
117-
.saturating_add(RocksDbWeight::get().writes(({{cw.slope}} as Weight).saturating_mul({{cw.name}} as Weight)))
117+
.saturating_add(RocksDbWeight::get().writes(({{cw.slope}} as u64).saturating_mul({{cw.name}} as u64)))
118118
{{/each}}
119119
}
120120
{{/each}}

example/node/Cargo.toml

+53-53
Original file line numberDiff line numberDiff line change
@@ -20,65 +20,65 @@ jsonrpsee = { version = "0.15.1", features = ["server"] }
2020
zenlink-template-runtime = { path = "../runtime" }
2121

2222
# Substrate
23-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
24-
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
25-
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
26-
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
27-
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
28-
sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "polkadot-v0.9.28" }
29-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
30-
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
31-
sc-executor = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "polkadot-v0.9.28" }
32-
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
33-
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
34-
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
35-
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
36-
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
37-
sc-service = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"] , branch = "polkadot-v0.9.28" }
38-
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
39-
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
40-
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
41-
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
42-
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
43-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
44-
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
45-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
46-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
47-
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
48-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
49-
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
50-
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
51-
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
52-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
53-
sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
54-
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
55-
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
56-
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
57-
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
58-
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
23+
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
24+
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
25+
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
26+
sc-basic-authorship = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
27+
sc-chain-spec = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
28+
sc-cli = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"], branch = "polkadot-v0.9.29" }
29+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
30+
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
31+
sc-executor = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"], branch = "polkadot-v0.9.29" }
32+
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
33+
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
34+
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
35+
sc-rpc = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
36+
sc-rpc-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
37+
sc-service = { git = "https://github.com/paritytech/substrate", features = ["wasmtime"], branch = "polkadot-v0.9.29" }
38+
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
39+
sc-telemetry = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
40+
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
41+
sc-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
42+
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
43+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
44+
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
45+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
46+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
47+
sp-consensus-aura = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
48+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
49+
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
50+
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
51+
sp-offchain = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
52+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
53+
sp-session = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
54+
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
55+
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
56+
substrate-frame-rpc-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
57+
substrate-prometheus-endpoint = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
58+
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
5959

6060
# Polkadot
61-
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" }
62-
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" }
63-
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" }
64-
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.28" }
65-
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.28" }
61+
polkadot-cli = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.29" }
62+
polkadot-parachain = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.29" }
63+
polkadot-primitives = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.29" }
64+
polkadot-service = { git = "https://github.com/paritytech/polkadot", branch = "release-v0.9.29" }
65+
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.29" }
6666

6767
# Cumulus
68-
cumulus-client-cli = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
69-
cumulus-client-collator = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
70-
cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
71-
cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
72-
cumulus-client-network = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
73-
cumulus-client-service = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
74-
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
75-
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
76-
cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
77-
cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
78-
cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.28" }
68+
cumulus-client-cli = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
69+
cumulus-client-collator = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
70+
cumulus-client-consensus-aura = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
71+
cumulus-client-consensus-common = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
72+
cumulus-client-network = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
73+
cumulus-client-service = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
74+
cumulus-primitives-core = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
75+
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
76+
cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
77+
cumulus-relay-chain-interface = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
78+
cumulus-relay-chain-rpc-interface = { git = "https://github.com/paritytech/cumulus.git", branch = "polkadot-v0.9.29" }
7979

8080
[build-dependencies]
81-
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28" }
81+
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29" }
8282

8383
[features]
8484
default = []

example/node/src/command.rs

+1-5
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ impl CliConfiguration<Self> for RelayChainCli {
348348
fn base_path(&self) -> Result<Option<BasePath>> {
349349
Ok(self
350350
.shared_params()
351-
.base_path()
351+
.base_path()?
352352
.or_else(|| self.base_path.clone().map(Into::into)))
353353
}
354354

@@ -399,10 +399,6 @@ impl CliConfiguration<Self> for RelayChainCli {
399399
self.base.base.transaction_pool(is_dev)
400400
}
401401

402-
fn state_cache_child_ratio(&self) -> Result<Option<usize>> {
403-
self.base.base.state_cache_child_ratio()
404-
}
405-
406402
fn rpc_methods(&self) -> Result<sc_service::config::RpcMethods> {
407403
self.base.base.rpc_methods()
408404
}

example/pallets/template/Cargo.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,17 +16,17 @@ codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive
1616
scale-info = { version = "2.0.0", default-features = false, features = ["derive"] }
1717

1818
# Substrate
19-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.28" }
20-
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.28" }
21-
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.28" }
19+
frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.29" }
20+
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" }
21+
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" }
2222

2323
[dev-dependencies]
2424
serde = { version = "1.0.132" }
2525

2626
# Substrate
27-
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.28" }
28-
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.28" }
29-
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.28" }
27+
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" }
28+
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" }
29+
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.29" }
3030

3131
[features]
3232
default = ["std"]

example/pallets/template/src/lib.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ pub mod pallet {
6767
impl<T: Config> Pallet<T> {
6868
/// An example dispatchable that takes a singles value as a parameter, writes the value to
6969
/// storage and emits an event. This function must be dispatched by a signed extrinsic.
70-
#[pallet::weight(10_000 + T::DbWeight::get().writes(1))]
70+
#[pallet::weight(Weight::from_ref_time(10_000) + T::DbWeight::get().writes(1))]
7171
pub fn do_something(origin: OriginFor<T>, something: u32) -> DispatchResultWithPostInfo {
7272
// Check that the extrinsic was signed and get the signer.
7373
// This function will return an error if the extrinsic is not signed.
@@ -84,7 +84,7 @@ pub mod pallet {
8484
}
8585

8686
/// An example dispatchable that may throw a custom error.
87-
#[pallet::weight(10_000 + T::DbWeight::get().reads_writes(1,1))]
87+
#[pallet::weight(Weight::from_ref_time(10_000) + T::DbWeight::get().reads_writes(1,1))]
8888
pub fn cause_error(origin: OriginFor<T>) -> DispatchResultWithPostInfo {
8989
let _who = ensure_signed(origin)?;
9090

example/primitives/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ serde = { version = "1.0.119", optional = true }
1010
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false }
1111
scale-info = { version = "2.1.2", default-features = false, features = ["derive"] }
1212

13-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28",default-features = false }
14-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.28", default-features = false }
13+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29",default-features = false }
14+
sp-std = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.29", default-features = false }
1515

1616
zenlink-protocol = { path = "../../zenlink-protocol", default-features = false }
1717

0 commit comments

Comments
 (0)