Skip to content

Commit

Permalink
Merge branch 'parachain_dev' into feat/1205123214195403_block_reward_…
Browse files Browse the repository at this point in the history
…name_change
  • Loading branch information
sfffaaa authored Aug 2, 2023
2 parents e16533a + 4f0173a commit f19e851
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions runtime/krest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -797,12 +797,12 @@ pub mod staking {
#[derive(Debug, PartialEq, Eq)]
pub const MaxCollatorsPerDelegator: u32 = 1;
/// Minimum stake required to be reserved to be a collator is 1000 KREST
pub const MinCollatorStake: Balance = 10_000 * DOLLARS;
pub const MinCollatorStake: Balance = 50_000 * DOLLARS;
/// Minimum stake required to be reserved to be a delegator is 100 KREST
pub const MinDelegatorStake: Balance = 250 * DOLLARS;
pub const MinDelegatorStake: Balance = 100 * DOLLARS;
/// Maximum number of collator candidates
#[derive(Debug, PartialEq, Eq)]
pub const MaxCollatorCandidates: u32 = 16;
pub const MaxCollatorCandidates: u32 = 128;
/// Maximum number of concurrent requests to unlock unstaked balance
pub const MaxUnstakeRequests: u32 = 10;
}
Expand Down

0 comments on commit f19e851

Please sign in to comment.