1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
pub use ;
pub use BlockBody;
pub use BlockNumber;
pub use BlockProof;
pub use ProposedBlock;
pub use SignedBlock;
pub use ProvenBlock;
pub use Blockchain;
pub use BlockAccountUpdate;
pub use AccountUpdateWitness;
pub use BlockInputs;
pub use ;
/// 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.
pub type OutputNoteBatch = Vec;