cfxcore/pos/protocol/mod.rs
1// Copyright 2019-2020 Conflux Foundation. All rights reserved.
2// TreeGraph is free software and distributed under Apache License 2.0.
3// See https://www.apache.org/licenses/LICENSE-2.0
4
5pub mod message;
6pub mod network_event;
7pub mod network_sender;
8pub mod request_manager;
9pub mod sync_protocol;
10
11use network::{service::ProtocolVersion, ProtocolId};
12
13pub const HSB_PROTOCOL_ID: ProtocolId = *b"hsb"; // HotStuff Synchronization Protocol
14pub const HSB_PROTOCOL_VERSION: ProtocolVersion = ProtocolVersion(1);