bee-ledger 0.6.1

All types and features required to compute and maintain the ledger state
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright 2020-2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0

//! Module containing types to describe and handle ledger snapshots.

/// Module containing types to describe snapshot headers.
pub mod header;
/// Module containing a type to describe snapshot information.
pub mod info;
/// Module containing a snapshot kind enumeration.
pub mod kind;
/// Module containing a type to describe the ledger changes occurring within a milestone.
pub mod milestone_diff;

pub use header::{DeltaSnapshotHeader, FullSnapshotHeader, SnapshotHeader};
pub use info::SnapshotInfo;
pub use kind::SnapshotKind;
pub use milestone_diff::MilestoneDiff;