parser: split txid_to_txdata db

This commit is contained in:
k
2024-08-08 09:21:59 +02:00
parent 5aaa05d579
commit eb9b57eef4
4 changed files with 13 additions and 15 deletions

View File

@@ -38,7 +38,7 @@ where
}
const ROOT_DB: usize = 0;
const PAGE_SIZE: u64 = 4096 * 256; // 1mo - Must be a multiplier of 4096
const PAGE_SIZE: u64 = 4096;
impl<Key, Value> Database<Key, Value>
where