Skip to content

Commit

Permalink
feat: decrease minimum staking amount of delegator (#2952)
Browse files Browse the repository at this point in the history
Co-authored-by: Yang <yang@trustcomputing.de>
  • Loading branch information
wangminqi and BillyWooo authored Aug 3, 2024
1 parent 884fb6c commit c41bd1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/litentry/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -719,8 +719,8 @@ parameter_types! {
pub const DefaultCollatorCommission: Perbill = Perbill::from_percent(33);
/// Default percent of inflation set aside for parachain bond every round
pub const DefaultParachainBondReservePercent: Percent = Percent::from_percent(0);
pub const MinDelegation: Balance = 50 * DOLLARS;
pub const MinDelegatorStk: Balance = 50 * DOLLARS;
pub const MinDelegation: Balance = 5 * DOLLARS;
pub const MinDelegatorStk: Balance = 5 * DOLLARS;
}

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

0 comments on commit c41bd1f

Please sign in to comment.