Skip to content

Commit

Permalink
Fixed pre-funded account list (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
pgherveou authored Feb 23, 2024
1 parent 7e8dbb5 commit 9c12d03
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion node/src/chain_spec/dev.rs
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,17 @@ pub fn development_config() -> Result<ChainSpec, String> {
// Pre-funded accounts
vec![
get_account_id_from_seed::<sr25519::Public>("Alice"),
get_account_id_from_seed::<sr25519::Public>("Bob"),
get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
get_account_id_from_seed::<sr25519::Public>("Bob"),
get_account_id_from_seed::<sr25519::Public>("Bob//stash"),
get_account_id_from_seed::<sr25519::Public>("Charlie"),
get_account_id_from_seed::<sr25519::Public>("Charlie//stash"),
get_account_id_from_seed::<sr25519::Public>("Dave"),
get_account_id_from_seed::<sr25519::Public>("Dave//stash"),
get_account_id_from_seed::<sr25519::Public>("Eve"),
get_account_id_from_seed::<sr25519::Public>("Eve//stash"),
get_account_id_from_seed::<sr25519::Public>("Ferdie"),
get_account_id_from_seed::<sr25519::Public>("Ferdie//stash"),
],
true,
))
Expand Down

0 comments on commit 9c12d03

Please sign in to comment.