jmt/types.rs
1// Copyright (c) The Diem Core Contributors
2// SPDX-License-Identifier: Apache-2.0
3
4#![forbid(unsafe_code)]
5
6pub mod nibble;
7pub mod proof;
8
9/// Specifies a particular version of the [`JellyfishMerkleTree`](crate::JellyfishMerkleTree) state.
10pub type Version = u64; // Height - also used for MVCC in StateDB
11
12/// The version before the genesis state. This version should always be empty.
13pub const PRE_GENESIS_VERSION: Version = u64::max_value();