View full block with map_block_full.

This commit is contained in:
Alexandre Bourget
2023-08-09 11:57:21 -04:00
parent 21f0e768e5
commit b71364d5a1
4 changed files with 21 additions and 3 deletions

View File

@@ -0,0 +1,6 @@
use substreams_ethereum::pb::eth::v2::Block;
#[substreams::handlers::map]
fn map_block_full(blk: Block) -> Result<Block, substreams::errors::Error> {
Ok(blk)
}