Skip to content

Commit

Permalink
change default inflation rate and dummy fund value
Browse files Browse the repository at this point in the history
  • Loading branch information
ddulesov committed Feb 6, 2021
1 parent 5fbfccb commit 575a2f0
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 @@ -263,7 +263,7 @@ pub fn testnet_genesis(

const ENDOWMENT: Balance = 8_000_000 * DOLLARS;
const STASH: Balance = 500_000 * DOLLARS;
const MINT: Balance = 10_000_000 * DOLLARS;
const MINT: Balance = 2_000_000 * DOLLARS;

GenesisConfig {
frame_system: Some(SystemConfig {
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 @@ -435,7 +435,7 @@ pallet_staking_reward_curve::build! {
const REWARD_CURVE: PiecewiseLinear<'static> = curve!(
min_inflation: 0_050_000,
// APY = (e^Inf - 1) / ideal_stake
max_inflation: 0_161_000,
max_inflation: 0_120_000,
ideal_stake: 0_700_000,
falloff: 0_050_000,
max_piece_count: 40,
Expand Down

0 comments on commit 575a2f0

Please sign in to comment.