Files
nanoreth/src/node/storage/tables.rs
2025-07-21 04:15:29 +00:00

12 lines
295 B
Rust

use alloy_primitives::{BlockNumber, Bytes};
use reth_db::{table::TableInfo, tables, TableSet, TableType, TableViewer};
use std::fmt;
tables! {
/// Read precompile calls for each block.
table BlockReadPrecompileCalls {
type Key = BlockNumber;
type Value = Bytes;
}
}