Skip to content

Commit

Permalink
fix ed requirement
Browse files Browse the repository at this point in the history
  • Loading branch information
Ank4n committed Nov 28, 2024
1 parent 5cf4cb3 commit 4b1736b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions substrate/bin/node/testing/src/genesis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ pub fn config_endowed(extra_endowed: Vec<AccountId>) -> RuntimeGenesisConfig {
(alice(), 111 * DOLLARS),
(bob(), 100 * DOLLARS),
(charlie(), 100_000_000 * DOLLARS),
(dave(), 111 * DOLLARS),
(dave(), 112 * DOLLARS),
(eve(), 101 * DOLLARS),
(ferdie(), 100 * DOLLARS),
(ferdie(), 101 * DOLLARS),
];

endowed.extend(extra_endowed.into_iter().map(|endowed| (endowed, 100 * DOLLARS)));
Expand Down
8 changes: 4 additions & 4 deletions substrate/frame/root-offences/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -207,10 +207,10 @@ impl ExtBuilder {
(30, self.balance_factor * 50),
(40, self.balance_factor * 50),
// stashes
(11, self.balance_factor * 1000),
(21, self.balance_factor * 1000),
(31, self.balance_factor * 500),
(41, self.balance_factor * 1000),
(11, self.balance_factor * 1500),
(21, self.balance_factor * 1500),
(31, self.balance_factor * 1000),
(41, self.balance_factor * 2000),
],
}
.assimilate_storage(&mut storage)
Expand Down

0 comments on commit 4b1736b

Please sign in to comment.