feat: add Block AT to BlockReader (#12837)

This commit is contained in:
Arsenii Kulikov
2024-11-25 18:28:56 +04:00
committed by GitHub
parent e2c42ae242
commit c44e11b8ad
69 changed files with 664 additions and 267 deletions

View File

@ -22,7 +22,7 @@ pub struct MyRpcExt<Provider> {
impl<Provider> MyRpcExtApiServer for MyRpcExt<Provider>
where
Provider: BlockReaderIdExt + 'static,
Provider: BlockReaderIdExt<Block = reth::primitives::Block> + 'static,
{
/// Showcasing how to implement a custom rpc method
/// using the provider.