Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions crates/distributed-storage/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ pub mod error;
pub mod local;
pub mod query;
pub mod replication;
pub mod state_consensus;
pub mod store;
pub mod submission;
pub mod weights;
Expand Down Expand Up @@ -122,6 +123,12 @@ pub use challenge_store::{
ChallengeStorage, ChallengeStore, ChallengeStoreRegistry, MerkleNode, MerkleProof,
};

// State consensus protocol
pub use state_consensus::{
ConsensusResult as StateConsensusResult, FraudProof, GlobalStateLinker, InclusionProof,
StateRootConsensus, StateRootConsensusError, StateRootProposal, StateRootVote,
};

#[cfg(test)]
mod integration_tests {
use super::*;
Expand Down
Loading
Loading