Skip to content

Commit

Permalink
Merge pull request #154 from InvArch/gabriel-minimum_staking_drop
Browse files Browse the repository at this point in the history
Drop InvArch minimum staking amount to 5
  • Loading branch information
arrudagates authored May 8, 2024
2 parents b99d5b2 + 3a37f5c commit cbc5c3f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion invarch/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("invarch"),
impl_name: create_runtime_str!("invarch"),
authoring_version: 1,
spec_version: 6,
spec_version: 7,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down
3 changes: 2 additions & 1 deletion invarch/runtime/src/staking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ parameter_types! {
pub const BlocksPerEra: BlockNumber = DAYS;
pub const RegisterDeposit: Balance = 5000 * UNIT;
pub const MaxStakersPerCore: u32 = 10000;
pub const MinimumStakingAmount: Balance = 50 * UNIT;
// Temporarily dropping down from 50 to 5.
pub const MinimumStakingAmount: Balance = 5 * UNIT;
pub const MaxEraStakeValues: u32 = 5;
pub const MaxUnlockingChunks: u32 = 5;
pub const UnbondingPeriod: u32 = 28;
Expand Down

0 comments on commit cbc5c3f

Please sign in to comment.