Skip to content

Commit d80f234

Browse files
authored
Set minimum bond to 500 MOVR for Moonriver (#2552)
1 parent 6cf1578 commit d80f234

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/moonriver/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -755,7 +755,7 @@ impl pallet_parachain_staking::Config for Runtime {
755755
/// Maximum delegations per delegator
756756
type MaxDelegationsPerDelegator = ConstU32<100>;
757757
/// Minimum stake required to be reserved to be a candidate
758-
type MinCandidateStk = ConstU128<{ 10000 * currency::MOVR * currency::SUPPLY_FACTOR }>;
758+
type MinCandidateStk = ConstU128<{ 500 * currency::MOVR * currency::SUPPLY_FACTOR }>;
759759
/// Minimum stake required to be reserved to be a delegator
760760
type MinDelegation = ConstU128<{ 5 * currency::MOVR * currency::SUPPLY_FACTOR }>;
761761
type BlockAuthor = AuthorInherent;
@@ -1739,7 +1739,7 @@ mod tests {
17391739
// staking minimums
17401740
assert_eq!(
17411741
get!(pallet_parachain_staking, MinCandidateStk, u128),
1742-
Balance::from(10 * KILOMOVR)
1742+
Balance::from(500 * MOVR)
17431743
);
17441744
assert_eq!(
17451745
get!(pallet_parachain_staking, MinDelegation, u128),

0 commit comments

Comments
 (0)