Bind the signature scheme for tendermint-machine

This commit is contained in:
Luke Parker
2023-04-12 16:06:14 -04:00
parent 8c8232516d
commit 86cbf6e02e
3 changed files with 135 additions and 1 deletions

View File

@@ -7,7 +7,7 @@ mod transaction;
pub use transaction::*;
mod provided;
pub use provided::*;
pub(crate) use provided::*;
mod block;
pub use block::*;
@@ -18,6 +18,9 @@ pub use blockchain::*;
mod mempool;
pub use mempool::*;
mod tendermint;
pub use crate::tendermint::*;
#[cfg(any(test, feature = "tests"))]
pub mod tests;