mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-11 09:43:08 +00:00
9 lines
341 B
Rust
9 lines
341 B
Rust
use testing_framework_core::scenario::ScenarioBuilder;
|
|
use testing_framework_workflows::ScenarioBuilderExt;
|
|
|
|
pub fn wallets_plan() -> testing_framework_core::scenario::Scenario<()> {
|
|
ScenarioBuilder::topology_with(|t| t.network_star().validators(1).executors(0))
|
|
.wallets(50) // Seed 50 funded wallet accounts
|
|
.build()
|
|
}
|