Skip to content

Commit d5cfd89

Browse files
authored
Complete DebugNode implementation (#9)
1 parent 1854d43 commit d5cfd89

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/node/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ where
9393
{
9494
type RpcBlock = alloy_rpc_types::Block;
9595

96-
fn rpc_to_primitive_block(_rpc_block: Self::RpcBlock) -> BlockTy<Self> {
97-
todo!()
96+
fn rpc_to_primitive_block(rpc_block: Self::RpcBlock) -> BlockTy<Self> {
97+
rpc_block.into_consensus().convert_transactions()
9898
}
9999
}

0 commit comments

Comments
 (0)