This commit is contained in:
Boog900 2024-12-18 22:14:39 +00:00
parent 9475f3f541
commit a916b00758
No known key found for this signature in database
GPG key ID: 42AB1287CB0041C2
2 changed files with 0 additions and 2 deletions

View file

@ -269,7 +269,6 @@ pub fn get_block_complete_entry(
let first_tx_idx = miner_tx_idx + 1;
let tx_blobs = (first_tx_idx..(usize_to_u64(numb_non_miner_txs) + first_tx_idx))
.into_iter()
.map(|idx| {
let tx_blob = tables.tx_blobs().get(&idx)?.0;

View file

@ -615,7 +615,6 @@ fn next_chain_entry(
let last_height_in_chain_entry = min(first_known_height + next_entry_size, chain_height);
let (block_ids, block_weights) = (first_known_height..last_height_in_chain_entry)
.into_iter()
.map(|height| {
let block_info = table_block_infos.get(&height)?;