Skip to content

Commit

Permalink
fix more nits
Browse files Browse the repository at this point in the history
  • Loading branch information
niklasad1 committed Feb 16, 2024
1 parent b24393f commit 3d7dda8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion substrate/client/cli/src/runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ use crate::{error::Error as CliError, Result, Signals, SubstrateCli};
use chrono::prelude::*;
use futures::{future::FutureExt, Future};
use log::info;
use sc_service::{Configuration, Error as ServiceError, TaskManager};
use sc_service::{
config::RpcBatchRequestConfig, Configuration, Error as ServiceError, TaskManager,
};
use sc_utils::metrics::{TOKIO_THREADS_ALIVE, TOKIO_THREADS_TOTAL};
use std::{marker::PhantomData, time::Duration};

Expand Down Expand Up @@ -271,6 +273,7 @@ mod tests {
rpc_max_subs_per_conn: Default::default(),
rpc_message_buffer_capacity: Default::default(),
rpc_port: 9944,
rpc_batch_config: RpcBatchRequestConfig::Unlimited,
prometheus_config: None,
telemetry_endpoints: None,
default_heap_pages: None,
Expand Down

0 comments on commit 3d7dda8

Please sign in to comment.