Skip to content

Commit

Permalink
Increase Genesis Account Balance (#116)
Browse files Browse the repository at this point in the history
* Increase Genesis Account Balance

This increases the genesis account balance from 1.1529... to 18446744.0737....

* Changed the Initial Balance

Updated to 1 << 70

* Updated it to shift 80

Total value at genesis is increased to 1208925.819614629174706176
  • Loading branch information
albertov19 authored Nov 16, 2020
1 parent b34a8ab commit 216ffc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node/standalone/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,8 @@ fn testnet_genesis(
changes_trie_config: Default::default(),
}),
pallet_balances: Some(BalancesConfig {
// Configure endowed accounts with initial balance of 1 << 60.
balances: endowed_accounts.iter().cloned().map(|k|(k, 1 << 60)).collect(),
// Configure endowed accounts with initial balance of 1 << 80.
balances: endowed_accounts.iter().cloned().map(|k|(k, 1 << 80)).collect(),
}),
pallet_aura: Some(AuraConfig {
authorities: initial_authorities.iter().map(|x| (x.0.clone())).collect(),
Expand Down

0 comments on commit 216ffc2

Please sign in to comment.