Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
jasl committed Feb 27, 2023
1 parent 336ecbe commit 017b2a8
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 8 deletions.
3 changes: 1 addition & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 0 additions & 3 deletions crates/phala-node-rpc-ext/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,3 @@ phala-mq = { path = "../../crates/phala-mq" }
phala-pallets = { path = "../../pallets/phala" }
pallet-mq-runtime-api = { path = "../../pallets/phala/mq-runtime-api" }
ext-types = { path = "./types", package = "phala-node-rpc-ext-types" }

rayon = "1"

3 changes: 1 addition & 2 deletions crates/phala-node-rpc-ext/src/storage_changes.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
use super::*;
pub use ext_types::*;
use rayon::prelude::*;

/// State RPC errors.
#[derive(Debug, thiserror::Error)]
Expand Down Expand Up @@ -107,7 +106,7 @@ where
}

headers
.into_par_iter()
.into_iter()
.map(|(id, mut header)| -> Result<_, Error> {
let api = client.runtime_api();
let hash = client.expect_block_hash_from_id(&id).expect("Should get the block hash");
Expand Down
2 changes: 1 addition & 1 deletion node/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "khala-node"
version = "0.1.20-4"
version = "0.1.20-8"
license = "Apache-2.0"
homepage = "https://phala.network/"
repository = "https://github.com/Phala-Network/khala-parachain"
Expand Down

0 comments on commit 017b2a8

Please sign in to comment.