-
Notifications
You must be signed in to change notification settings - Fork 107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrades to 0.9.30 #710
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
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
+1
@@ -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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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" ] } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same as above.
@@ -101,7 +101,10 @@ snowblink-runtime-benchmarks = [ "snowblink-runtime/runtime-benchmarks" ] | |||
snowbase-runtime-benchmarks = [ "snowbase-runtime/runtime-benchmarks" ] | |||
polkadot-runtime-benchmarks = [ "polkadot-service/runtime-benchmarks" ] | |||
|
|||
runtime-benchmarks = [] | |||
runtime-benchmarks = [ | |||
"frame-benchmarking/runtime-benchmarks", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do we need the /runtime-benchmarks
suffix here? We're using frame-benchmarking
in the runtime-benchmarks feature for the runtimes.
parachain/src/command.rs
Outdated
// 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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
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
)