docs: fix param name (#10366)

This commit is contained in:
Meet Mangukiya
2024-08-17 04:14:56 +05:30
committed by GitHub
parent 6ace2fbbac
commit c9dc7123ad

View File

@ -66,7 +66,7 @@ use reth_exex::{ExExContext, ExExEvent, ExExNotification};
use reth_node_ethereum::EthereumNode;
use reth_tracing::tracing::info;
async fn my_exex<Node: FullNodeComponents>(mut ctx: ExExContext<Node>) -> eyre::Result<()> {
async fn my_exex<Node: FullNodeComponents>(mut _ctx: ExExContext<Node>) -> eyre::Result<()> {
loop {}
}