diff --git a/polkadot/node/service/src/chain_spec.rs b/polkadot/node/service/src/chain_spec.rs index 803e4e102b31f12e728450671c796832f4a4e325..f53013fe1e6bcaee8893d86f7d652915a8cc4053 100644 --- a/polkadot/node/service/src/chain_spec.rs +++ b/polkadot/node/service/src/chain_spec.rs @@ -1447,8 +1447,8 @@ pub fn westend_testnet_genesis( ) -> westend::GenesisConfig { let endowed_accounts: Vec<AccountId> = endowed_accounts.unwrap_or_else(testnet_accounts); - const ENDOWMENT: u128 = 1_000_000 * DOT; - const STASH: u128 = 100 * DOT; + const ENDOWMENT: u128 = 1_000_000 * WND; + const STASH: u128 = 100 * WND; westend::GenesisConfig { system: westend::SystemConfig { code: wasm_binary.to_vec() }, @@ -1528,7 +1528,7 @@ pub fn rococo_testnet_genesis( ) -> rococo_runtime::GenesisConfig { let endowed_accounts: Vec<AccountId> = endowed_accounts.unwrap_or_else(testnet_accounts); - const ENDOWMENT: u128 = 1_000_000 * DOT; + const ENDOWMENT: u128 = 1_000_000 * ROC; rococo_runtime::GenesisConfig { system: rococo_runtime::SystemConfig { code: wasm_binary.to_vec() },