mirror of
https://github.com/logos-blockchain/logos-blockchain-testing.git
synced 2026-01-03 22:03:12 +00:00
7 lines
282 B
Rust
7 lines
282 B
Rust
|
|
use testing_framework_core::scenario::ScenarioBuilder;
|
||
|
|
use testing_framework_workflows::ScenarioBuilderExt;
|
||
|
|
|
||
|
|
pub fn step_2_wallets() -> testing_framework_core::scenario::Builder<()> {
|
||
|
|
ScenarioBuilder::with_node_counts(1, 1).wallets(1_000) // Seed 1,000 funded wallet accounts
|
||
|
|
}
|