docs: correct indentation in rpc.rs (#15824)

Co-authored-by: Matthias Seitz <matthias.seitz@outlook.de>
This commit is contained in:
Morty
2025-04-22 17:53:19 +08:00
committed by GitHub
parent 701af23fa5
commit cf3240f6ee

View File

@@ -529,7 +529,7 @@ where
let launch_auth = auth_module.clone().start_server(auth_config).map_ok(|handle| {
let addr = handle.local_addr();
if let Some(ipc_endpoint) = handle.ipc_endpoint() {
info!(target: "reth::cli", url=%addr, ipc_endpoint=%ipc_endpoint,"RPC auth server started");
info!(target: "reth::cli", url=%addr, ipc_endpoint=%ipc_endpoint, "RPC auth server started");
} else {
info!(target: "reth::cli", url=%addr, "RPC auth server started");
}