Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into sandreim/backing_mu…
Browse files Browse the repository at this point in the history
…ltiple_cores_per_para
  • Loading branch information
alindima committed Feb 20, 2024
2 parents c793b89 + ef6ac94 commit 8398bb1
Show file tree
Hide file tree
Showing 105 changed files with 1,065 additions and 1,586 deletions.
67 changes: 34 additions & 33 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion cumulus/client/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ license = "GPL-3.0-or-later WITH Classpath-exception-2.0"
workspace = true

[dependencies]
clap = { version = "4.5.0", features = ["derive"] }
clap = { version = "4.5.1", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.0.0" }
url = "2.4.0"

Expand Down
2 changes: 1 addition & 1 deletion cumulus/parachain-template/node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ publish = false
workspace = true

[dependencies]
clap = { version = "4.5.0", features = ["derive"] }
clap = { version = "4.5.1", features = ["derive"] }
log = { workspace = true, default-features = true }
codec = { package = "parity-scale-codec", version = "3.0.0" }
serde = { version = "1.0.196", features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions cumulus/parachains/chain-specs/coretime-westend.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
"id": "coretime-westend",
"chainType": "Live",
"bootNodes": [
"/dns/westend-coretime-collator-0.parity-testnet.parity.io/tcp/30333/p2p/12D3KooWP93Dzk8T7GWxyWw9jhLcz8Pksokk3R9vL2eEH337bNkT",
"/dns/westend-coretime-collator-1.parity-testnet.parity.io/tcp/30333/p2p/12D3KooWMh2imeAzsZKGQgm2cv6Uoep3GBYtwGfujt1bs5YfVzkH"
"/dns/westend-coretime-collator-node-0.parity-testnet.parity.io/tcp/30333/p2p/12D3KooWP93Dzk8T7GWxyWw9jhLcz8Pksokk3R9vL2eEH337bNkT",
"/dns/westend-coretime-collator-node-1.parity-testnet.parity.io/tcp/30333/p2p/12D3KooWMh2imeAzsZKGQgm2cv6Uoep3GBYtwGfujt1bs5YfVzkH"
],
"telemetryEndpoints": null,
"protocolId": null,
Expand Down Expand Up @@ -68,4 +68,4 @@
"childrenDefault": {}
}
}
}
}
2 changes: 1 addition & 1 deletion cumulus/polkadot-parachain/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ path = "src/main.rs"

[dependencies]
async-trait = "0.1.74"
clap = { version = "4.5.0", features = ["derive"] }
clap = { version = "4.5.1", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.0.0" }
futures = "0.3.28"
hex-literal = "0.4.1"
Expand Down
2 changes: 1 addition & 1 deletion cumulus/test/service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ path = "src/main.rs"

[dependencies]
async-trait = "0.1.74"
clap = { version = "4.5.0", features = ["derive"] }
clap = { version = "4.5.1", features = ["derive"] }
codec = { package = "parity-scale-codec", version = "3.0.0" }
criterion = { version = "0.5.1", features = ["async_tokio"] }
jsonrpsee = { version = "0.22", features = ["server"] }
Expand Down
2 changes: 1 addition & 1 deletion polkadot/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ crate-type = ["cdylib", "rlib"]

[dependencies]
cfg-if = "1.0"
clap = { version = "4.5.0", features = ["derive"], optional = true }
clap = { version = "4.5.1", features = ["derive"], optional = true }
log = { workspace = true, default-features = true }
thiserror = "1.0.48"
futures = "0.3.21"
Expand Down
2 changes: 1 addition & 1 deletion polkadot/node/core/prospective-parachains/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ async fn handle_active_leaves_update<Context>(
)
.expect("ancestors are provided in reverse order and correctly; qed");

gum::debug!(
gum::trace!(
target: LOG_TARGET,
relay_parent = ?hash,
min_relay_parent = scope.earliest_relay_parent().number,
Expand Down
2 changes: 1 addition & 1 deletion polkadot/node/malus/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ assert_matches = "1.5"
async-trait = "0.1.74"
sp-keystore = { path = "../../../substrate/primitives/keystore" }
sp-core = { path = "../../../substrate/primitives/core" }
clap = { version = "4.5.0", features = ["derive"] }
clap = { version = "4.5.1", features = ["derive"] }
futures = "0.3.21"
futures-timer = "3.0.2"
gum = { package = "tracing-gum", path = "../gum" }
Expand Down
1 change: 1 addition & 0 deletions polkadot/node/network/gossip-support/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,6 @@ polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }

assert_matches = "1.4.0"
async-trait = "0.1.74"
parking_lot = "0.12.1"
lazy_static = "1.4.0"
quickcheck = "1.0.3"
Loading

0 comments on commit 8398bb1

Please sign in to comment.