Skip to content

Commit

Permalink
Merge pull request #2294 from subspace/max_nominators
Browse files Browse the repository at this point in the history
Update max nominators and bump spec version
  • Loading branch information
vedhavyas authored Dec 6, 2023
2 parents 25e9cc4 + 90d0c6f commit 9ca7a15
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions crates/subspace-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("subspace"),
impl_name: create_runtime_str!("subspace"),
authoring_version: 0,
spec_version: 4,
spec_version: 5,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -603,8 +603,7 @@ parameter_types! {
pub const StakeEpochDuration: DomainNumber = 100;
pub TreasuryAccount: AccountId = PalletId(*b"treasury").into_account_truncating();
pub const MaxPendingStakingOperation: u32 = 100;
// TODO: reset `MaxNominators` back to `100` once the gemini-3g chain spec is created
pub const MaxNominators: u32 = 0;
pub const MaxNominators: u32 = 256;
pub SudoId: AccountId = Sudo::key().expect("Sudo account must exist");
}

Expand Down

0 comments on commit 9ca7a15

Please sign in to comment.