exocore-chain 0.1.18

Storage of Exocore (Distributed applications framework)
Documentation
1
2
3
4
5
6
7
8
9
/// Pending Synchronization Error
#[derive(Debug, thiserror::Error)]
pub enum PendingSyncError {
    #[error("Got into an invalid synchronization state: {0}")]
    InvalidSyncState(#[source] anyhow::Error),

    #[error("Got an invalid sync request: {0}")]
    InvalidSyncRequest(#[source] anyhow::Error),
}