vec: fixed compressed, still slow par read, cli: made raw the default

This commit is contained in:
nym21
2025-06-12 16:31:54 +02:00
parent 54ea6cc53b
commit 37405384a2
7 changed files with 27 additions and 7 deletions

View File

@@ -1443,7 +1443,10 @@ impl Vecs {
let height = txindex_to_height
.get_or_read(input_txindex, &txindex_to_height_mmap)
.unwrap()
.unwrap()
.unwrap_or_else(|| {
dbg!(input_txindex, txindex_to_height.len());
unreachable!("")
})
.into_inner();
(height, value, input_type)