Skip to content

Commit

Permalink
fix initial balance
Browse files Browse the repository at this point in the history
  • Loading branch information
vgantchev committed Sep 4, 2024
1 parent 6887a46 commit 6019b66
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions node/src/chain_spec/local.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@

use super::*;

const INITIAL_BALANCE: u128 = 1_000_000_000 * UNITS;
const INITIAL_TOKEN_BALANCE: Balance = 1_000 * UNITS;
const INITIAL_BALANCE: u128 = 1_000_000_000;
const INITIAL_TOKEN_BALANCE: Balance = 1_000_000;

pub fn parachain_config() -> Result<ChainSpec, String> {
let wasm_binary = WASM_BINARY.ok_or("Development wasm binary not available".to_string())?;
Expand Down
2 changes: 1 addition & 1 deletion node/src/chain_spec/paseo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn parachain_config() -> Result<ChainSpec, String> {
}

pub fn _parachain_config_paseo() -> Result<ChainSpec, String> {
const INITIAL_BALANCE: u128 = 1_000_000_000 * UNITS;
const INITIAL_BALANCE: u128 = 1_000_000_000;

const TELEMETRY_URLS: [&str; 2] = [
"wss://telemetry.polkadot.io/submit/",
Expand Down
2 changes: 1 addition & 1 deletion node/src/chain_spec/rococo.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ pub fn parachain_config() -> Result<ChainSpec, String> {
}

pub fn _parachain_config_rococo() -> Result<ChainSpec, String> {
const INITIAL_BALANCE: u128 = 1_000_000_000 * UNITS;
const INITIAL_BALANCE: u128 = 1_000_000_000;
const TELEMETRY_URLS: [&str; 2] = [
"wss://telemetry.polkadot.io/submit/",
"wss://telemetry.hydradx.io:9000/submit/",
Expand Down

0 comments on commit 6019b66

Please sign in to comment.