scratchpad/lib.rs
1// Copyright (c) The Diem Core Contributors
2// SPDX-License-Identifier: Apache-2.0
3
4// Copyright 2021 Conflux Foundation. All rights reserved.
5// Conflux is free software and distributed under GNU General Public License.
6// See http://www.gnu.org/licenses/
7
8//! This crate provides in-memory representation of Diem core data structures
9//! used by the executor.
10
11mod sparse_merkle;
12
13pub use crate::sparse_merkle::{AccountStatus, ProofRead, SparseMerkleTree};