mirror of
https://github.com/logos-blockchain/lssa-zkvm-testing.git
synced 2026-01-07 15:53:12 +00:00
12 lines
262 B
Rust
12 lines
262 B
Rust
use crate::mocked_components::client::MockedClient;
|
|
|
|
pub mod client;
|
|
pub mod sequencer;
|
|
|
|
/// Default users for examples
|
|
pub const USER_CLIENTS: [MockedClient; 3] = [
|
|
MockedClient::new([1; 8]),
|
|
MockedClient::new([2; 8]),
|
|
MockedClient::new([3; 8]),
|
|
];
|