chore: fix unnameable-types lint on blockchain-tree and rpc crates (#9757)

Co-authored-by: Emilia Hane <emiliaha95@gmail.com>
This commit is contained in:
Tuan Tran
2024-07-25 22:31:20 +07:00
committed by GitHub
parent 22a25caed8
commit db8706e5d8
8 changed files with 28 additions and 15 deletions

View File

@ -32,10 +32,7 @@ use tower::{layer::util::Identity, Layer, Service};
use tracing::{debug, instrument, trace, warn, Instrument};
// re-export so can be used during builder setup
use crate::{
server::{
connection::IpcConnDriver,
rpc_service::{RpcService, RpcServiceCfg},
},
server::{connection::IpcConnDriver, rpc_service::RpcServiceCfg},
stream_codec::StreamCodec,
};
use tokio::sync::mpsc;
@ -46,6 +43,8 @@ mod connection;
mod ipc;
mod rpc_service;
pub use rpc_service::RpcService;
/// Ipc Server implementation
///
/// This is an adapted `jsonrpsee` Server, but for `Ipc` connections.