mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-02-16 19:23:09 +00:00
Update for main repo changes - this implied many changes in the testing framework code
removal of DA config-related code that was still present because it was required by node code until now
nomos-da-network-core = { workspace = true }
subnetworks-assignations = { workspace = true }
nomos-da-dispersal = { workspace = true }
nomos-da-network-core = { workspace = true }
nomos-da-network-service = { workspace = true }
nomos-da-sampling = { workspace = true }
nomos-da-verifier = { workspace = true }
nomos-ledger = { workspace = true, features = ["serde"] }
removal of the executor node
logos-blockchain-executor = { workspace = true }
9 lines
299 B
Rust
9 lines
299 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
|
|
.validators(2) // 2 validator nodes
|
|
})
|
|
}
|