Skip to content

Commit

Permalink
Fixing cap accodding to initial supply
Browse files Browse the repository at this point in the history
  • Loading branch information
hackfisher committed Dec 26, 2019
1 parent 3b9c733 commit 70f9d02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion node/cli/src/chain_spec.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ pub fn darwinia_genesis(
get_account_id_from_seed::<sr25519::Public>("Bob"),
];

const RING_ENDOWMENT: Balance = 10_000_000 * COIN;
const RING_ENDOWMENT: Balance = 20_000_000 * COIN;
const KTON_ENDOWMENT: Balance = 10 * COIN;
const STASH: Balance = 1000 * COIN;

Expand Down
2 changes: 1 addition & 1 deletion node/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -370,7 +370,7 @@ parameter_types! {
pub const BondingDuration: Moment = 1_209_600_000;
pub const BondingDurationInEra: staking::EraIndex = 4032;
// decimal 9
pub const HardCap: Balance = 10_000_000_000 * COIN;
pub const HardCap: Balance = 1_000_000_000 * COIN;
// date in Los Angeles*: 11/19/2019, 2:33:20 AM
// date in Berlin* :11/19/2019, 5:33:20 PM
// date in Beijing*: 11/19/2019, 4:33:20 PM
Expand Down

0 comments on commit 70f9d02

Please sign in to comment.