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

Commit 6f47b85

Browse files
authored
Add rpc_http_threads (#548)
1 parent 3462a4b commit 6f47b85

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed

client/cli/src/lib.rs

+4
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,10 @@ impl sc_cli::CliConfiguration for NormalizedRunCmd {
217217
self.base.rpc_ws_max_connections()
218218
}
219219

220+
fn rpc_http_threads(&self) -> sc_cli::Result<Option<usize>> {
221+
self.base.rpc_http_threads()
222+
}
223+
220224
fn rpc_cors(&self, is_dev: bool) -> sc_cli::Result<Option<Vec<String>>> {
221225
self.base.rpc_cors(is_dev)
222226
}

polkadot-parachains/src/command.rs

+4
Original file line numberDiff line numberDiff line change
@@ -575,6 +575,10 @@ impl CliConfiguration<Self> for RelayChainCli {
575575
self.base.base.rpc_ws_max_connections()
576576
}
577577

578+
fn rpc_http_threads(&self) -> Result<Option<usize>> {
579+
self.base.base.rpc_http_threads()
580+
}
581+
578582
fn rpc_cors(&self, is_dev: bool) -> Result<Option<Vec<String>>> {
579583
self.base.base.rpc_cors(is_dev)
580584
}

0 commit comments

Comments
 (0)