Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Commit 476308c

Browse files
committed
Update substrate depepndencies
1 parent ee49329 commit 476308c

File tree

82 files changed

+1076
-1227
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

82 files changed

+1076
-1227
lines changed

Cargo.lock

Lines changed: 211 additions & 362 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ assert_cmd = "2.0.4"
3232
nix = { version = "0.26.1", features = ["signal"] }
3333
tempfile = "3.2.0"
3434
tokio = "1.24.2"
35-
substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "master" }
35+
substrate-rpc-client = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
3636
polkadot-core-primitives = { path = "core-primitives" }
3737

3838
[workspace]

cli/Cargo.toml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -27,22 +27,22 @@ polkadot-node-core-pvf-execute-worker = { path = "../node/core/pvf/execute-worke
2727
polkadot-node-core-pvf-prepare-worker = { path = "../node/core/pvf/prepare-worker", optional = true }
2828
polkadot-performance-test = { path = "../node/test/performance-test", optional = true }
2929

30-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
31-
sp-io = { git = "https://github.com/paritytech/substrate", branch = "master" }
32-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
33-
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
34-
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
35-
try-runtime-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
36-
sc-cli = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
37-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
30+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
31+
sp-io = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
32+
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
33+
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
34+
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "asset-hub-westend-9435" }
35+
try-runtime-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "asset-hub-westend-9435" }
36+
sc-cli = { git = "https://github.com/paritytech/substrate", optional = true , branch = "asset-hub-westend-9435" }
37+
sc-service = { git = "https://github.com/paritytech/substrate", optional = true , branch = "asset-hub-westend-9435" }
3838
polkadot-node-metrics = { path = "../node/metrics" }
39-
sc-tracing = { git = "https://github.com/paritytech/substrate", branch = "master", optional = true }
40-
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "master" }
41-
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
42-
sc-storage-monitor = { git = "https://github.com/paritytech/substrate", branch = "master" }
39+
sc-tracing = { git = "https://github.com/paritytech/substrate", optional = true , branch = "asset-hub-westend-9435" }
40+
sc-sysinfo = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
41+
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
42+
sc-storage-monitor = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
4343

4444
[build-dependencies]
45-
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "master" }
45+
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
4646

4747
[features]
4848
default = ["db", "cli", "full-node", "polkadot-native"]

core-primitives/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ authors.workspace = true
55
edition.workspace = true
66

77
[dependencies]
8-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
9-
sp-std = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
10-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
8+
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
9+
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
10+
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
1111
scale-info = { version = "2.5.0", default-features = false, features = ["derive"] }
1212
parity-scale-codec = { version = "3.6.1", default-features = false, features = [ "derive" ] }
1313

erasure-coding/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ polkadot-primitives = { path = "../primitives" }
99
polkadot-node-primitives = { package = "polkadot-node-primitives", path = "../node/primitives" }
1010
novelpoly = { package = "reed-solomon-novelpoly", version = "1.0.0" }
1111
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["std", "derive"] }
12-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "master" }
12+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
13+
sp-trie = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
1414
thiserror = "1.0.31"
1515

1616
[dev-dependencies]

node/client/Cargo.toml

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -7,36 +7,36 @@ edition.workspace = true
77
[dependencies]
88
async-trait = "0.1.57"
99
futures = "0.3.21"
10-
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "master" }
11-
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "master" }
12-
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "master" }
13-
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
14-
frame-system = { git = "https://github.com/paritytech/substrate", branch = "master" }
15-
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
10+
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
11+
frame-benchmarking-cli = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
12+
pallet-transaction-payment = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
13+
pallet-transaction-payment-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
14+
frame-system = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
15+
frame-system-rpc-runtime-api = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
1616

17-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
18-
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "master" }
19-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master" }
20-
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "master" }
21-
sp-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
22-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
23-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
24-
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "master" }
25-
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "master" }
26-
sp-session = { git = "https://github.com/paritytech/substrate", branch = "master" }
27-
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "master" }
28-
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
29-
sp-consensus-beefy = { git = "https://github.com/paritytech/substrate", branch = "master" }
30-
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate", branch = "master" }
31-
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "master" }
32-
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "master" }
33-
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "master" }
34-
sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
17+
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
18+
sp-storage = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
19+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
20+
sp-blockchain = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
21+
sp-api = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
22+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
23+
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
24+
sp-inherents = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
25+
sp-timestamp = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
26+
sp-session = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
27+
sp-authority-discovery = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
28+
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
29+
sp-consensus-beefy = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
30+
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
31+
sp-transaction-pool = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
32+
sp-offchain = { package = "sp-offchain", git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
33+
sp-block-builder = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
34+
sp-mmr-primitives = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
3535

36-
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "master" }
37-
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "master" }
38-
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "master" }
39-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
36+
sc-consensus = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
37+
sc-executor = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
38+
sc-client-api = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
39+
sc-service = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
4040

4141
# Polkadot Runtimes
4242
polkadot-runtime = { path = "../../runtime/polkadot", optional = true }

node/collation-generation/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ polkadot-node-primitives = { path = "../primitives" }
1212
polkadot-node-subsystem = { path = "../subsystem" }
1313
polkadot-node-subsystem-util = { path = "../subsystem-util" }
1414
polkadot-primitives = { path = "../../primitives" }
15-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
16-
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "master" }
15+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
16+
sp-maybe-compressed-blob = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
1717
thiserror = "1.0.31"
1818
parity-scale-codec = { version = "3.6.1", default-features = false, features = ["bit-vec", "derive"] }
1919

node/core/approval-voting/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,20 +24,20 @@ polkadot-primitives = { path = "../../../primitives" }
2424
polkadot-node-primitives = { path = "../../primitives" }
2525
polkadot-node-jaeger = { path = "../../jaeger" }
2626

27-
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
28-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
29-
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
30-
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false, features = ["full_crypto"] }
31-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
27+
sc-keystore = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
28+
sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
29+
sp-consensus-slots = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
30+
sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, features = ["full_crypto"] , branch = "asset-hub-westend-9435" }
31+
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
3232

3333
[dev-dependencies]
3434
async-trait = "0.1.57"
3535
parking_lot = "0.12.0"
3636
rand_core = "0.5.1" # should match schnorrkel
37-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
38-
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
39-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
40-
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "master" }
37+
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
38+
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
39+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
40+
sp-consensus-babe = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
4141
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
4242
assert_matches = "1.4.0"
4343
kvdb-memorydb = "0.13.0"

node/core/av-store/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ polkadot-node-subsystem-util = { path = "../../subsystem-util" }
1919
polkadot-overseer = { path = "../../overseer" }
2020
polkadot-primitives = { path = "../../../primitives" }
2121
polkadot-node-primitives = { path = "../../primitives" }
22-
sp-consensus = { git = "https://github.com/paritytech/substrate", branch = "master", default-features = false }
22+
sp-consensus = { git = "https://github.com/paritytech/substrate", default-features = false , branch = "asset-hub-westend-9435" }
2323

2424
[dev-dependencies]
2525
log = "0.4.17"
2626
env_logger = "0.9.0"
2727
assert_matches = "1.4.0"
2828
kvdb-memorydb = "0.13.0"
2929

30-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
30+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
3131
polkadot-node-subsystem-util = { path = "../../subsystem-util" }
3232
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }
33-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
33+
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
3434
parking_lot = "0.12.0"
3535
test-helpers = { package = "polkadot-primitives-test-helpers", path = "../../../primitives/test-helpers" }

node/core/backing/Cargo.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition.workspace = true
66

77
[dependencies]
88
futures = "0.3.21"
9-
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
9+
sp-keystore = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
1010
polkadot-primitives = { path = "../../../primitives" }
1111
polkadot-node-primitives = { path = "../../primitives" }
1212
polkadot-node-subsystem = {path = "../../subsystem" }
@@ -19,11 +19,11 @@ thiserror = "1.0.31"
1919
fatality = "0.0.6"
2020

2121
[dev-dependencies]
22-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "master" }
23-
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "master" }
24-
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "master" }
25-
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "master" }
26-
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "master" }
22+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
23+
sp-application-crypto = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
24+
sp-keyring = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
25+
sc-keystore = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
26+
sp-tracing = { git = "https://github.com/paritytech/substrate", branch = "asset-hub-westend-9435" }
2727
futures = { version = "0.3.21", features = ["thread-pool"] }
2828
assert_matches = "1.4.0"
2929
polkadot-node-subsystem-test-helpers = { path = "../../subsystem-test-helpers" }

0 commit comments

Comments
 (0)