mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 21:33:09 +00:00
11 lines
220 B
Rust
11 lines
220 B
Rust
pub mod block;
|
|
pub mod error;
|
|
pub mod rpc_primitives;
|
|
pub mod sequencer_client;
|
|
pub mod transaction;
|
|
|
|
//Module for tests utility functions
|
|
//TODO: Compile only for tests
|
|
pub mod test_utils;
|
|
pub type HashType = [u8; 32];
|