Upgrades to 0.9.30#710
Conversation
|
E2E pass on Snowbridge: |
…ara/sno333-upgrade-to-v0.9.30
…ara/sno333-upgrade-to-v0.9.30
| @@ -12,26 +12,26 @@ targets = [ "x86_64-unknown-linux-gnu" ] | |||
| [dependencies] | |||
| serde = { version = "1.0.137", optional = true } | |||
| codec = { version = "3.0.0", package = "parity-scale-codec", default-features = false, features = [ "derive" ] } | |||
There was a problem hiding this comment.
Should we standardise parity-scale-codec to version 3.1.5 like in the top level Cargo.toml?
| codec = { version = "3.0.0", package = "parity-scale-codec", default-features = false, features = [ "derive" ] } | |
| codec = { version = "3.1.5", package = "parity-scale-codec", default-features = false, features = [ "derive" ] } |
| @@ -12,20 +12,20 @@ targets = [ "x86_64-unknown-linux-gnu" ] | |||
| [dependencies] | |||
| serde = { version = "1.0.137", optional = true } | |||
| codec = { version = "3.0.0", package = "parity-scale-codec", default-features = false, features = [ "derive" ] } | |||
|
|
||
| runtime-benchmarks = [] | ||
| runtime-benchmarks = [ | ||
| "frame-benchmarking/runtime-benchmarks", |
There was a problem hiding this comment.
Why do we need the /runtime-benchmarks suffix here? We're using frame-benchmarking in the runtime-benchmarks feature for the runtimes.
| // https://github.com/paritytech/substrate/blob/1802a115e8480fd7a4654d45c85b58c2189c508a/client/db/src/lib.rs#L1096 | ||
| #[cfg(feature = "runtime-benchmarks")] | ||
| BenchmarkCmd::Storage(_) => Err( | ||
| "Storage benchmarking can be enabled with `--features runtime-benchmarks`." |
There was a problem hiding this comment.
Why do we need to disable storage benchmarking? I can't see the reason at the link above.
Could we change the error message to mention that storage benchmarking is disabled? This will only be displayed when the runtime-benchmarks feature is enabled, but this message advises enabling the same feature.
| "Storage benchmarking can be enabled with `--features runtime-benchmarks`." | |
| "Storage benchmarking is disabled." |
There was a problem hiding this comment.
I missed the not clause here, corrected now. 8fc8037
…Snowfork/snowbridge into clara/sno333-upgrade-to-v0.9.30
Co-authored-by: David Dunn <26876072+doubledup@users.noreply.github.com>
|
I'm just running the E2E tests again after the latest changes, then I'll merge. |
…ara/sno333-upgrade-to-v0.9.30
|
E2E passes after changes: |
service.rs,command.rs)