This commit is contained in:
Sergio Chouhy 2025-07-24 08:21:20 -03:00
parent db5815ec09
commit 6ede7eac16

View File

@ -6,6 +6,7 @@ use storage::RocksDBIO;
pub struct SequecerBlockStore {
dbio: RocksDBIO,
// TODO: Consider adding the hashmap to the database for faster recovery.
tx_hash_to_block_map: HashMap<TreeHashType, u64>,
pub genesis_id: u64,
}