Files
nanoreth/crates/interfaces/src/db/models/mod.rs
joshieDo 2a8189d7c9 chore(db): Add tests and fuzz target to BlockNumHash (#130)
* add tests and fuzz target for BlockNumHash

* use block 1 for test_block_num_hash

* new clippy stds

* fmt
2022-10-25 01:23:10 -07:00

7 lines
115 B
Rust

//! Implements data structures specific to the database
pub mod blocks;
pub mod integer_list;
pub use blocks::*;