cfxcore/pos/state_sync/
mod.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#![forbid(unsafe_code)]
9
10//! Used to perform catching up between nodes for committed states.
11//! Used for node restarts, network partitions, full node syncs
12
13pub mod bootstrapper;
14pub mod client;
15pub mod coordinator;
16pub mod executor_proxy;
17mod logging;