Skip to content

Commit 57cbb0d

Browse files
authored
Improve Peer Connections (#1243) (#1244)
* Update to newer Substrate branch * update to latest substrate
1 parent a7c759b commit 57cbb0d

File tree

10 files changed

+222
-222
lines changed

10 files changed

+222
-222
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 88 additions & 88 deletions
Large diffs are not rendered by default.

bin/executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ pallet-treasury = { version = "3.0.0" }
4141
sp-application-crypto = { version = "3.0.0" }
4242
sp-runtime = { version = "3.0.0" }
4343
sp-externalities = { version = "0.9.0" }
44-
substrate-test-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymath-3.0.0" }
44+
substrate-test-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymesh-4.1.2" }
4545
wabt = "0.10.0"
4646

4747
[features]

bin/testing/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ sp-runtime = { version = "3.0.0" }
3939
sc-executor = { version = "0.9.0", features = ["wasmtime"] }
4040
sp-consensus = { version = "0.9.0" }
4141
frame-system = { version = "3.0.0" }
42-
substrate-test-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymath-3.0.0" }
42+
substrate-test-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymesh-4.1.2" }
4343
pallet-timestamp = { version = "3.0.0" }
4444
pallet-treasury = { version = "3.0.0" }
4545
wabt = "0.10.0"

pallets/balances/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ frame-support = { version = "3.0.0", default-features = false }
2727
pallet-timestamp = { version = "3.0.0", default-features = false }
2828

2929
# Only for test in STD
30-
substrate-test-runtime-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymath-3.0.0", optional = true}
30+
substrate-test-runtime-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymesh-4.1.2", optional = true}
3131

3232
# Benchmarking
3333
frame-benchmarking = { version = "3.0.0", default-features = false, optional = true }

pallets/base/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ serde_derive = { version = "1.0.104", optional = true, default-features = false
1414

1515
# Substrate
1616
codec = { package = "parity-scale-codec", version = "2.0.0", default-features = false, features = ["derive"] }
17-
sp-core = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymath-3.0.0" }
18-
sp-std = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymath-3.0.0" }
19-
sp-io = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymath-3.0.0" }
20-
sp-runtime = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymath-3.0.0" }
21-
sp-version = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymath-3.0.0" }
22-
sp-api = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymath-3.0.0" }
17+
sp-core = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymesh-4.1.2" }
18+
sp-std = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymesh-4.1.2" }
19+
sp-io = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymesh-4.1.2" }
20+
sp-runtime = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymesh-4.1.2" }
21+
sp-version = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymesh-4.1.2" }
22+
sp-api = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymesh-4.1.2" }
2323

24-
frame-system = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymath-3.0.0" }
25-
frame-support = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymath-3.0.0" }
24+
frame-system = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymesh-4.1.2" }
25+
frame-support = { git = "https://github.com/PolymathNetwork/substrate", default-features = false, branch = "polymesh-4.1.2" }
2626

2727
[features]

pallets/common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ schnorrkel = { version = "0.10.1", default-features = false, optional = true }
3232

3333
[dev-dependencies]
3434
lazy_static = { version = "1.4.0", default-features = false }
35-
substrate-test-runtime-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymath-3.0.0" }
35+
substrate-test-runtime-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymesh-4.1.2" }
3636

3737
[features]
3838
default = ["std", "equalize"]

pallets/group/rpc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,4 @@ sp-std = {version = "3.0.0", default_features = false }
2727
sp-api = {version = "3.0.0", default_features = false }
2828

2929
[dev-dependencies]
30-
substrate-test-runtime-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymath-3.0.0"}
30+
substrate-test-runtime-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymesh-4.1.2"}

pallets/runtime/tests/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ sp-std = { version = "3.0.0", default-features = false }
9696
sp-transaction-pool = { version = "3.0.0", default-features = false }
9797
sp-version = { version = "3.0.0", default-features = false }
9898

99-
test_client = { package = "substrate-test-runtime-client", git = "https://github.com/PolymathNetwork/substrate", branch = "polymath-3.0.0", optional = true }
99+
test_client = { package = "substrate-test-runtime-client", git = "https://github.com/PolymathNetwork/substrate", branch = "polymesh-4.1.2", optional = true }
100100
substrate-test-utils = { version = "3.0.0", optional = true }
101101

102102
[dev-dependencies]

pallets/statistics/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ pallet-timestamp = { version = "3.0.0", default-features = false }
2929
pallet-session = { version = "3.0.0", default-features = false }
3030

3131
# Only in STD
32-
substrate-test-runtime-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymath-3.0.0", optional = true}
32+
substrate-test-runtime-client = { git = "https://github.com/PolymathNetwork/substrate", branch = "polymesh-4.1.2", optional = true}
3333

3434
# Only in Benchmarks
3535
frame-benchmarking = { version = "3.0.0", default-features = false, optional = true }

0 commit comments

Comments
 (0)