Skip to content

Commit

Permalink
Tweak comment
Browse files Browse the repository at this point in the history
  • Loading branch information
casey committed Aug 29, 2024
1 parent 22d6a55 commit aa78319
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index/utxo_entry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ enum Sats<'a> {
Value(u64),
}

// A `UtxoEntry` stores the following information about an unspent transaction
// A `UtxoValue` stores the following information about an unspent transaction
// output, depending on the indexing options:
//
// If `--index-sats`, the full list of sat ranges, stored as a varint followed
Expand All @@ -31,9 +31,9 @@ enum Sats<'a> {
// Note that the list of inscriptions doesn't need an explicit length, it
// continues until the end of the array.
//
// A `UtxoValue` is the low-level read-only redb value. A `UtxoValueBuf` is the
// writeable version, used for constructing new `UtxoValue`s. A `UtxoEntry` is
// the parsed value.
// A `UtxoValue` is the low-level read-only value stored in redb. A
// `UtxoValueBuf` is the writeable version, used for constructing new
// `UtxoValue`s. A `UtxoEntry` is the parsed value.

#[derive(Debug, RefCast)]
#[repr(transparent)]
Expand Down

0 comments on commit aa78319

Please sign in to comment.