runner: endow test accounts on genesis

Signed-off-by: Cyrill Leutwiler <bigcyrill@hotmail.com>
This commit is contained in:
Cyrill Leutwiler
2024-09-06 13:50:01 +02:00
parent c111bcbc4d
commit d77ee1e0d4
4 changed files with 19 additions and 5 deletions
+5 -1
View File
@@ -179,7 +179,11 @@ impl Default for Specs {
fn default() -> Self {
Self {
differential: false,
balances: vec![(ALICE, 1_000_000_000)],
balances: vec![
(ALICE, 1_000_000_000),
(BOB, 1_000_000_000),
(CHARLIE, 1_000_000_000),
],
actions: Default::default(),
}
}