server: ms endpoint fixes

This commit is contained in:
nym21
2026-04-04 12:16:15 +02:00
parent 01d908a560
commit 42b497ff65
10 changed files with 63 additions and 24 deletions

View File

@@ -53,11 +53,6 @@ impl Query {
.transactions
.height
.collect_range_at(start, end);
let versions = indexer
.vecs
.transactions
.tx_version
.collect_range_at(start, end);
let lock_times = indexer
.vecs
.transactions
@@ -185,7 +180,7 @@ impl Query {
let mut transaction = Transaction {
index: Some(TxIndex::from(start + i)),
txid: txids[i].clone(),
version: versions[i],
version: tx.version.into(),
lock_time: lock_times[i],
total_size: *total_sizes[i] as usize,
weight,