mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-02-17 03:33:08 +00:00
9 lines
289 B
Rust
9 lines
289 B
Rust
use testing_framework_core::scenario::ScenarioBuilder;
|
|
|
|
pub fn step_1_topology() -> testing_framework_core::scenario::Builder<()> {
|
|
ScenarioBuilder::topology_with(|t| {
|
|
t.network_star() // Star topology: all nodes connect to seed
|
|
.nodes(2) // 2 node nodes
|
|
})
|
|
}
|