mirror of
https://github.com/hl-archive-node/nanoreth.git
synced 2025-12-06 10:59:55 +00:00
12 lines
295 B
Rust
12 lines
295 B
Rust
use alloy_primitives::{BlockNumber, Bytes};
|
|
use reth_db::{TableSet, TableType, TableViewer, table::TableInfo, tables};
|
|
use std::fmt;
|
|
|
|
tables! {
|
|
/// Read precompile calls for each block.
|
|
table BlockReadPrecompileCalls {
|
|
type Key = BlockNumber;
|
|
type Value = Bytes;
|
|
}
|
|
}
|