Skip to content

Commit

Permalink
fix clippy issue
Browse files Browse the repository at this point in the history
  • Loading branch information
xlc committed Jul 3, 2020
1 parent 42ef6b8 commit 2686ec9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ fn testnet_genesis(
pallet_balances: Some(BalancesConfig {
balances: initial_authorities
.iter()
.map(|x| (x.0.clone(), INITIAL_STAKING + 1 * DOLLARS)) // bit more for fee
.map(|x| (x.0.clone(), INITIAL_STAKING + DOLLARS)) // bit more for fee
.chain(endowed_accounts.iter().cloned().map(|k| (k, INITIAL_BALANCE)))
.chain(
get_all_module_accounts()
Expand Down Expand Up @@ -393,7 +393,7 @@ fn mandala_genesis(
pallet_balances: Some(BalancesConfig {
balances: initial_authorities
.iter()
.map(|x| (x.0.clone(), INITIAL_STAKING + 1 * DOLLARS)) // bit more for fee
.map(|x| (x.0.clone(), INITIAL_STAKING + DOLLARS)) // bit more for fee
.chain(endowed_accounts.iter().cloned().map(|k| (k, INITIAL_BALANCE)))
.chain(
get_all_module_accounts()
Expand Down

0 comments on commit 2686ec9

Please sign in to comment.