Skip to content

Commit e6b5f20

Browse files
authored
Merge pull request #474 from sander2/chore/upgrade-parachain
chore: upgrade to latest parachain
2 parents 17f4cd8 + f4decf4 commit e6b5f20

16 files changed

+1849
-1971
lines changed

Cargo.lock

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

Cargo.toml

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

bitcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ serde = "1.0.139"
3535
serde_json = "1.0.82"
3636

3737
# Substrate dependencies
38-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38" }
38+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
3939

4040
[dev-dependencies]
4141
mockall = "0.8.1"

runner/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ clap = { version = "4.0.17", features = ["derive"]}
1010
hex = "0.4.3"
1111
tokio = { version = "1.8", features = ["rt-multi-thread", "macros", "time"] }
1212
codec = { package = "parity-scale-codec", version = "3.0.0", default-features = false, features = ["derive", "full", "bit-vec"] }
13-
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38" }
13+
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
1414
thiserror = "1.0.0"
1515
log = "0.4.0"
1616
env_logger = "0.7.1"

runtime/Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,11 @@ prometheus = { version = "0.12.0", features = ["process"] }
3535
lazy_static = "1.4.0"
3636

3737
# Substrate dependencies
38-
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38" }
38+
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
3939
# needs to agree with subxt's version
4040
sp-keyring = { version = "7.0.0", default_features = false }
41-
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38" }
42-
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38" }
41+
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
42+
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
4343

4444
# Subxt dependencies
4545
subxt = "0.25.0"
@@ -50,28 +50,28 @@ bitcoin = { path = "../bitcoin" }
5050

5151
# Dependencies for the testing utils for integration tests
5252
tempdir = { version = "0.3.7", optional = true }
53-
interbtc = { package = "interbtc-parachain", git = "https://github.com/interlay/interbtc", rev = "f0772a08db719ab8841f6fd23dfef1f227d3b348", optional = true }
54-
interbtc-runtime = { package = "testnet-kintsugi-runtime-parachain", git = "https://github.com/interlay/interbtc", rev = "f0772a08db719ab8841f6fd23dfef1f227d3b348", optional = true }
53+
interbtc = { package = "interbtc-parachain", git = "https://github.com/interlay/interbtc", rev = "7a2f5ee35d93feb0529a308fe87b42674bfca8e9", optional = true }
54+
interbtc-runtime = { package = "testnet-kintsugi-runtime-parachain", git = "https://github.com/interlay/interbtc", rev = "7a2f5ee35d93feb0529a308fe87b42674bfca8e9", optional = true }
5555
rand = { version = "0.7", optional = true }
5656

5757
[dependencies.primitives]
5858
git = "https://github.com/interlay/interbtc"
59-
rev = "f0772a08db719ab8841f6fd23dfef1f227d3b348"
59+
rev = "7a2f5ee35d93feb0529a308fe87b42674bfca8e9"
6060
package = "interbtc-primitives"
6161

6262
[dependencies.module-bitcoin]
6363
git = "https://github.com/interlay/interbtc"
64-
rev = "f0772a08db719ab8841f6fd23dfef1f227d3b348"
64+
rev = "7a2f5ee35d93feb0529a308fe87b42674bfca8e9"
6565
package = "bitcoin"
6666

6767
[dependencies.module-btc-relay]
6868
git = "https://github.com/interlay/interbtc"
69-
rev = "f0772a08db719ab8841f6fd23dfef1f227d3b348"
69+
rev = "7a2f5ee35d93feb0529a308fe87b42674bfca8e9"
7070
package = "btc-relay"
7171

7272
[dependencies.module-oracle-rpc-runtime-api]
7373
git = "https://github.com/interlay/interbtc"
74-
rev = "f0772a08db719ab8841f6fd23dfef1f227d3b348"
74+
rev = "7a2f5ee35d93feb0529a308fe87b42674bfca8e9"
7575
package = "oracle-rpc-runtime-api"
7676

7777
[dev-dependencies]

runtime/client/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ log = "0.4.13"
2323
serde_json = "1.0.61"
2424
thiserror = "1.0.23"
2525

26-
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38" }
27-
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38", default-features = false }
28-
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38", default-features = false }
29-
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.38", default-features = false }
26+
sc-client-db = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40" }
27+
sc-network = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false }
28+
sc-network-common = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false }
29+
sc-service = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.40", default-features = false }
3030
# needs to agree with subxt's version
3131
sp-keyring = { version = "7.0.0" }
3232

runtime/client/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@ use jsonrpsee_core::{
1010
client::{ClientBuilder, ReceivedMessage, TransportReceiverT, TransportSenderT},
1111
};
1212

13-
use sc_network_common::config::TransportConfig;
1413
pub use sc_service::{
1514
config::{DatabaseSource, KeystoreConfig, WasmExecutionMethod, WasmtimeInstantiationStrategy},
1615
Error as ServiceError,
1716
};
1817
use sc_service::{
19-
config::{NetworkConfiguration, TelemetryEndpoints},
18+
config::{NetworkConfiguration, TelemetryEndpoints, TransportConfig},
2019
ChainSpec, Configuration, RpcHandlers, TaskManager,
2120
};
2221

-2.14 KB
Binary file not shown.
-2.14 KB
Binary file not shown.
-2.14 KB
Binary file not shown.

0 commit comments

Comments
 (0)