Skip to content

Commit daf8a54

Browse files
committed
client refactor
1 parent 6842af3 commit daf8a54

File tree

6 files changed

+310
-1254
lines changed

6 files changed

+310
-1254
lines changed

Cargo.lock

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,8 @@ cumulus-client-consensus-common = { git = "https://github.com/paritytech/polkado
238238
cumulus-client-consensus-relay-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0" }
239239
cumulus-client-network = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0" }
240240
cumulus-client-service = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0" }
241+
cumulus-client-collator = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0" }
242+
cumulus-client-consensus-proposer = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0" }
241243
cumulus-primitives-parachain-inherent = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0" }
242244
cumulus-relay-chain-inprocess-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0" }
243245
cumulus-relay-chain-interface = { git = "https://github.com/paritytech/polkadot-sdk", branch = "release-polkadot-v1.3.0" }

bin/collator/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,8 @@ cumulus-client-consensus-common = { workspace = true }
113113
cumulus-client-consensus-relay-chain = { workspace = true }
114114
cumulus-client-network = { workspace = true }
115115
cumulus-client-service = { workspace = true }
116+
cumulus-client-collator = { workspace = true }
117+
cumulus-client-consensus-proposer = { workspace = true }
116118
cumulus-primitives-core = { workspace = true, features = ["std"] }
117119
cumulus-primitives-parachain-inherent = { workspace = true }
118120
cumulus-relay-chain-inprocess-interface = { workspace = true }

bin/collator/src/command.rs

+1-7
Original file line numberDiff line numberDiff line change
@@ -788,14 +788,8 @@ pub fn run() -> Result<()> {
788788
};
789789

790790
runner.run_node_until_exit(|config| async move {
791-
#[cfg(feature = "evm-tracing")]
792791
if config.chain_spec.is_dev() {
793-
return local::start_node(config, evm_tracing_config).map_err(Into::into);
794-
}
795-
796-
#[cfg(not(feature = "evm-tracing"))]
797-
if config.chain_spec.is_dev() {
798-
return local::start_node(config).map_err(Into::into);
792+
return local::start_node(config, #[cfg(feature = "evm-tracing")] evm_tracing_config).map_err(Into::into);
799793
}
800794

801795
let polkadot_cli = RelayChainCli::new(

0 commit comments

Comments
 (0)