server: documentation part 1

This commit is contained in:
nym21
2025-10-06 22:53:50 +02:00
parent db344749b6
commit 7ff79c3164
23 changed files with 670 additions and 183 deletions

View File

@@ -1342,7 +1342,7 @@ impl Vecs {
.height_to_supply
.into_iter()
.unwrap_get_inner(prev_height);
state.supply.utxos = *self
state.supply.utxo_count = *self
.height_to_utxo_count
.into_iter()
.unwrap_get_inner(prev_height);
@@ -1579,7 +1579,7 @@ impl Vecs {
self.height_to_utxo_count.forced_push_at(
height,
StoredU64::from(state.supply.utxos),
StoredU64::from(state.supply.utxo_count),
exit,
)?;