Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: min nominator bond #1957

Merged
merged 3 commits into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions pallets/evm-signatures/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ impl pallet_assets::Config for Runtime {
type Freezer = ();
type Extra = ();
type WeightInfo = ();
type BenchmarkHelper = ();
type RemoveItemsLimit = frame_support::traits::ConstU32<1000>;
type CallbackHandle = ();
#[cfg(feature = "runtime-benchmarks")]
Expand Down
1 change: 1 addition & 0 deletions pallets/prices/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -233,6 +233,7 @@ impl pallet_assets::Config for Test {
type Freezer = ();
type Extra = ();
type WeightInfo = ();
type BenchmarkHelper = ();
type RemoveItemsLimit = frame_support::traits::ConstU32<1000>;
type CallbackHandle = ();
#[cfg(feature = "runtime-benchmarks")]
Expand Down
1 change: 1 addition & 0 deletions precompiles/assets-erc20/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -252,6 +252,7 @@ impl pallet_assets::Config for Runtime {
type StringLimit = AssetsStringLimit;
type Freezer = ();
type Extra = ();
type BenchmarkHelper = ();
type WeightInfo = pallet_assets::weights::SubstrateWeight<Runtime>;
type RemoveItemsLimit = frame_support::traits::ConstU32<1000>;
type CallbackHandle = ();
Expand Down
2 changes: 1 addition & 1 deletion runtime/heiko/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ impl pallet_loans::Config for Runtime {
parameter_types! {
pub const StakingPalletId: PalletId = PalletId(*b"par/lqsk");
pub const EraLength: BlockNumber = 6 * 1 * 3600 / 6; // 6HOURS
pub const MinStake: Balance = 100_000_000_000; // 0.1KSM
pub const MinStake: Balance = 1100_000_000_000; // 1.1KSM
pub const MinUnstake: Balance = 50_000_000_000; // 0.05sKSM
pub const StakingCurrency: CurrencyId = KSM;
pub const LiquidCurrency: CurrencyId = SKSM;
Expand Down
2 changes: 1 addition & 1 deletion runtime/parallel/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@ parameter_types! {
pub LoansInstantUnstakeFee: Rate = Rate::saturating_from_rational(38u32, 1000u32); // (1.45 ** (3600 * 4 * 36 / 5256000) - 1) * 100% ~= 3.732%
pub MatchingPoolFastUnstakeFee: Rate = Rate::saturating_from_rational(1u32, 100u32);
pub const BondingDuration: EraIndex = 28; // 28Days
pub const MinNominatorBond: Balance = 100_000_000_000; // 10DOT
pub const MinNominatorBond: Balance = 10_010_000_000_000; // 1001DOT
pub const NumSlashingSpans: u32 = 0;
pub DerivativeIndexList: Vec<u16> = vec![0, 1, 2, 3, 4, 5];
pub const ElectionSolutionStoredOffset: BlockNumber = 12600;
Expand Down
Loading