Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Tweak some NIS params (#6393)
Browse files Browse the repository at this point in the history
* Reduce base period, increase queue count

* Reduce base period, increase queue count
  • Loading branch information
gavofyork authored Dec 5, 2022
1 parent 48de7a2 commit a9d5309
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions runtime/kusama/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1268,7 +1268,7 @@ impl pallet_balances::Config<NisCounterpartInstance> for Runtime {

parameter_types! {
pub IgnoredIssuance: Balance = Treasury::pot();
pub const NisBasePeriod: BlockNumber = 30 * DAYS;
pub const NisBasePeriod: BlockNumber = 7 * DAYS;
pub const MinBid: Balance = 100 * QUID;
pub MinReceipt: Perquintill = Perquintill::from_rational(1u64, 10_000_000u64);
pub const IntakePeriod: BlockNumber = 5 * MINUTES;
Expand All @@ -1290,7 +1290,7 @@ impl pallet_nis::Config for Runtime {
type IgnoredIssuance = IgnoredIssuance;
type Target = NisTarget;
type PalletId = NisPalletId;
type QueueCount = ConstU32<300>;
type QueueCount = ConstU32<500>;
type MaxQueueLen = ConstU32<1000>;
type FifoQueueLen = ConstU32<250>;
type BasePeriod = NisBasePeriod;
Expand Down

0 comments on commit a9d5309

Please sign in to comment.