fix: replace todo!() with Ok(None) in NoopProvider transaction_block (#17949)

This commit is contained in:
Starkey
2025-08-20 14:30:18 +06:30
committed by GitHub
parent 0f26562bb6
commit 93fcd82351

View File

@@ -269,7 +269,7 @@ impl<C: Send + Sync, N: NodePrimitives> TransactionsProvider for NoopProvider<C,
}
fn transaction_block(&self, _id: TxNumber) -> ProviderResult<Option<BlockNumber>> {
todo!()
Ok(None)
}
fn transactions_by_block(