Skip to content
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

Upgrade to Polkadot v0.9.39 #1203

Merged
merged 9 commits into from
Mar 22, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
make clippy happy
  • Loading branch information
jasl committed Mar 20, 2023
commit 8bf0bc3ad26307284854acbbff2ca9c96061317a
1 change: 0 additions & 1 deletion crates/phala-node-rpc-ext/src/storage_changes.rs
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,6 @@ where
main_storage_changes: state
.pairs(Default::default())
.unwrap()
.into_iter()
.map(|pair| {
let (k, v) = pair.expect("Should get the key and value");
jasl marked this conversation as resolved.
Show resolved Hide resolved
(StorageKey(k), Some(StorageKey(v)))
Expand Down
1 change: 0 additions & 1 deletion crates/phala-trie-storage/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,6 @@ where
self.0
.pairs(iter_args)
.unwrap()
.into_iter()
.map(|pair| {
let (k, v) = pair.expect("Should get the key and value");
(k, v)
Expand Down
1 change: 1 addition & 0 deletions standalone/node/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ pub struct Cli {
}

/// Possible subcommands of the main binary.
#[allow(clippy::large_enum_variant)]
#[derive(Debug, clap::Subcommand)]
pub enum Subcommand {
/// The custom inspect subcommmand for decoding blocks and extrinsics.
Expand Down