Type Alias OutputNoteBatch

Source
pub type OutputNoteBatch = Vec<(usize, OutputNote)>;
Expand description

The set of notes created in a transaction batch with their index in the batch.

The index is included as some notes may be erased at the block level that were part of the output notes of a batch. This means the indices here may not be contiguous, i.e. any missing index belongs to an erased note. To correctly build the BlockNoteTree of a block, this index is required.

Aliased Typeยง

struct OutputNoteBatch { /* private fields */ }