Skip to content

Commit c41bd1f

Browse files
wangminqiBillyWooo
andauthored
feat: decrease minimum staking amount of delegator (#2952)
Co-authored-by: Yang <yang@trustcomputing.de>
1 parent 884fb6c commit c41bd1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

runtime/litentry/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -719,8 +719,8 @@ parameter_types! {
719719
pub const DefaultCollatorCommission: Perbill = Perbill::from_percent(33);
720720
/// Default percent of inflation set aside for parachain bond every round
721721
pub const DefaultParachainBondReservePercent: Percent = Percent::from_percent(0);
722-
pub const MinDelegation: Balance = 50 * DOLLARS;
723-
pub const MinDelegatorStk: Balance = 50 * DOLLARS;
722+
pub const MinDelegation: Balance = 5 * DOLLARS;
723+
pub const MinDelegatorStk: Balance = 5 * DOLLARS;
724724
}
725725

726726
#[cfg(feature = "runtime-benchmarks")]

0 commit comments

Comments
 (0)