Skip to content

Commit

Permalink
Deleted XCM(1) tokens from the initial balance.
Browse files Browse the repository at this point in the history
  • Loading branch information
adelarja committed Jul 19, 2023
1 parent 67a36cf commit 5b1654a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -670,7 +670,7 @@ fn foucoco_genesis(

let token_balances = balances
.iter()
.flat_map(|k| vec![(k.0.clone(), XCM(0), 1 << 60), (k.0.clone(), XCM(1), 1 << 60)])
.flat_map(|k| vec![(k.0.clone(), XCM(0), u128::pow(10, 18))])
.collect();

let stakers: Vec<_> = invulnerables
Expand Down

0 comments on commit 5b1654a

Please sign in to comment.