Skip to content

Commit be7b236

Browse files
authored
Update Substrate to June 2023 tag (#81)
* Update Substrate in Cargo.toml files. Create fresh Cargo.lock * Use runtime version macro (reflects paritytech/substrate#14228) * reflect paritytech/substrate#14080 * format * sc network dependency
1 parent 0f7ba44 commit be7b236

12 files changed

Lines changed: 776 additions & 884 deletions

File tree

Cargo.lock

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

node/Cargo.toml

Lines changed: 29 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -16,42 +16,43 @@ name = "node-template"
1616
[dependencies]
1717
clap = { version = "4.0.29", features = ["derive"] }
1818

19-
sc-cli = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
20-
sp-core = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
21-
sc-executor = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
22-
sc-service = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
23-
sc-telemetry = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
24-
sc-keystore = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
25-
sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
26-
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
27-
sc-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
28-
sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
29-
sp-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
30-
sc-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
31-
sc-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
32-
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
33-
sc-client-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
34-
sp-runtime = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
35-
sp-timestamp = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
36-
sp-inherents = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
37-
sp-keyring = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
38-
pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
19+
sc-cli = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
20+
sp-core = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
21+
sc-executor = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
22+
sc-service = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
23+
sc-telemetry = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
24+
sc-keystore = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
25+
sc-transaction-pool = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
26+
sc-transaction-pool-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
27+
sc-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
28+
sp-consensus-aura = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
29+
sp-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
30+
sc-consensus = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
31+
sc-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
32+
sp-consensus-grandpa = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
33+
sc-network = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
34+
sc-client-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
35+
sp-runtime = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
36+
sp-timestamp = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
37+
sp-inherents = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
38+
sp-keyring = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
39+
pallet-transaction-payment = { default-features = false, git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
3940

4041
# These dependencies are used for the node template's RPCs
4142
jsonrpsee = { version = "0.16.2", features = ["server"] }
42-
sc-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
43-
sp-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
44-
sc-rpc-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
45-
sp-blockchain = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
46-
sp-block-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
47-
sc-basic-authorship = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
48-
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
43+
sc-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
44+
sp-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
45+
sc-rpc-api = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
46+
sp-blockchain = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
47+
sp-block-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
48+
sc-basic-authorship = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
49+
pallet-transaction-payment-rpc = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
4950

5051
# Local Dependencies
5152
node-template-runtime = { package = "tuxedo-template-runtime", path = "../tuxedo-template-runtime" }
5253

5354
[build-dependencies]
54-
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
55+
substrate-build-script-utils = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
5556

5657
[features]
5758
default = []

node/src/service.rs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ pub fn new_partial(
137137
}
138138

139139
/// Builds a new service for a full client.
140-
pub fn new_full(mut config: Configuration) -> Result<TaskManager, ServiceError> {
140+
pub fn new_full(config: Configuration) -> Result<TaskManager, ServiceError> {
141141
let sc_service::PartialComponents {
142142
client,
143143
backend,
@@ -149,6 +149,8 @@ pub fn new_full(mut config: Configuration) -> Result<TaskManager, ServiceError>
149149
other: (block_import, grandpa_link, mut telemetry),
150150
} = new_partial(&config)?;
151151

152+
let mut net_config = sc_network::config::FullNetworkConfiguration::new(&config.network);
153+
152154
let grandpa_protocol_name = sc_consensus_grandpa::protocol_standard_name(
153155
&client
154156
.block_hash(0)
@@ -158,12 +160,10 @@ pub fn new_full(mut config: Configuration) -> Result<TaskManager, ServiceError>
158160
&config.chain_spec,
159161
);
160162

161-
config
162-
.network
163-
.extra_sets
164-
.push(sc_consensus_grandpa::grandpa_peers_set_config(
165-
grandpa_protocol_name.clone(),
166-
));
163+
net_config.add_notification_protocol(sc_consensus_grandpa::grandpa_peers_set_config(
164+
grandpa_protocol_name.clone(),
165+
));
166+
167167
let warp_sync = Arc::new(sc_consensus_grandpa::warp_proof::NetworkProvider::new(
168168
backend.clone(),
169169
grandpa_link.shared_authority_set().clone(),
@@ -173,6 +173,7 @@ pub fn new_full(mut config: Configuration) -> Result<TaskManager, ServiceError>
173173
let (network, system_rpc_tx, tx_handler_controller, network_starter, sync_service) =
174174
sc_service::build_network(sc_service::BuildNetworkParams {
175175
config: &config,
176+
net_config,
176177
client: client.clone(),
177178
transaction_pool: transaction_pool.clone(),
178179
spawn_handle: task_manager.spawn_handle(),

tuxedo-core/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ parity-util-mem = { version = '0.12.0', optional = true }
1616
aggregator = { path = "aggregator" }
1717
derive-no-bound = { path = "no_bound" }
1818

19-
sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
20-
sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false, features = ["force-debug"] }
21-
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
22-
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false, features = ["with-tracing"] }
23-
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
24-
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
25-
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
19+
sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
20+
sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false, features = ["force-debug"] }
21+
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
22+
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false, features = ["with-tracing"] }
23+
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
24+
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
25+
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
2626

2727
[dev-dependencies]
2828
array-bytes = "6.0.0"

tuxedo-template-runtime/Cargo.toml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -13,26 +13,26 @@ parity-scale-codec = { version = '3.4.0', default-features = false, features = [
1313
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
1414
parity-util-mem = { version = '0.12.0', optional = true }
1515

16-
sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
17-
sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false, features = ["force-debug"] }
18-
sp-block-builder = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
19-
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
20-
sp-inherents = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
21-
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false, features = ["with-tracing"] }
22-
sp-offchain = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
23-
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
24-
sp-session = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
25-
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
26-
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
27-
sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
28-
sp-version = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
29-
sp-timestamp = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
16+
sp-api = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
17+
sp-debug-derive = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false, features = ["force-debug"] }
18+
sp-block-builder = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
19+
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
20+
sp-inherents = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
21+
sp-io = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false, features = ["with-tracing"] }
22+
sp-offchain = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
23+
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
24+
sp-session = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
25+
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
26+
sp-storage = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
27+
sp-transaction-pool = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
28+
sp-version = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
29+
sp-timestamp = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
3030

3131
# These were added for Aura / Grandpa API support
3232
hex-literal = "0.4.1"
33-
sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
34-
sp-application-crypto = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
35-
sp-consensus-grandpa = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
33+
sp-consensus-aura = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
34+
sp-application-crypto = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
35+
sp-consensus-grandpa = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
3636

3737
# Tuxedo Core and Pieces
3838
tuxedo-core = { path = '../tuxedo-core', default-features = false }
@@ -43,10 +43,10 @@ kitties = { path = '../wardrobe/kitties', default-features = false }
4343
runtime-upgrade = { path = '../wardrobe/runtime_upgrade', default-features = false }
4444

4545
[build-dependencies]
46-
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-05" }
46+
substrate-wasm-builder = { git = "https://github.com/paritytech/substrate.git", tag = "monthly-2023-06" }
4747

4848
[dev-dependencies]
49-
sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false }
49+
sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false }
5050

5151
[features]
5252
default = ["std"]

tuxedo-template-runtime/src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ pub mod opaque {
8383
}
8484

8585
/// This runtime version.
86+
#[sp_version::runtime_version]
8687
pub const VERSION: RuntimeVersion = RuntimeVersion {
8788
spec_name: create_runtime_str!("tuxedo-template-runtime"),
8889
impl_name: create_runtime_str!("tuxedo-template-runtime"),

wallet/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ futures = "0.3"
2424
env_logger = "0.10.0"
2525
log = "0.4.17"
2626

27-
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05" }
28-
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05" }
29-
sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05" }
30-
sc-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05" }
27+
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06" }
28+
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06" }
29+
sp-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06" }
30+
sc-keystore = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06" }

wardrobe/amoeba/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ tuxedo-core = { path = '../../tuxedo-core', default-features = false }
1111
serde = { version = "1.0", optional = true, features = ["derive"] }
1212
parity-scale-codec = { version = '3.4.0', default-features = false, features = ['derive'] }
1313
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
14-
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
14+
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
1515

1616
[features]
1717
default = ["std"]

wardrobe/kitties/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ tuxedo-core = { path = '../../tuxedo-core', default-features = false }
1111
serde = { version = "1.0", optional = true, features = ["derive"] }
1212
parity-scale-codec = { version = '3.4.0', default-features = false, features = ['derive'] }
1313
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
14-
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
15-
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
16-
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
14+
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
15+
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
16+
sp-core = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
1717

1818
[features]
1919
default = ["std"]

wardrobe/money/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ tuxedo-core = { path = '../../tuxedo-core', default-features = false }
1111
serde = { version = "1.0", optional = true, features = ["derive"] }
1212
parity-scale-codec = { version = '3.4.0', default-features = false, features = ['derive'] }
1313
scale-info = { version = "2.1.1", default-features = false, features = ["derive"] }
14-
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
15-
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-05", default_features = false}
14+
sp-runtime = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
15+
sp-std = { git = 'https://github.com/paritytech/substrate', tag = "monthly-2023-06", default_features = false}
1616

1717
[features]
1818
default = ["std"]

0 commit comments

Comments
 (0)