Skip to content

Commit

Permalink
Increase max number of stakers on Shibuya: 512 -> 2048 (#494)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinonard authored Oct 26, 2021
1 parent 8656a4f commit c862efd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion runtime/shibuya/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "shibuya-runtime"
version = "2.6.7"
version = "2.6.8"
authors = ["Stake Technologies <[email protected]>"]
edition = "2018"
build = "build.rs"
Expand Down
4 changes: 2 additions & 2 deletions runtime/shibuya/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("shibuya"),
impl_name: create_runtime_str!("shibuya"),
authoring_version: 1,
spec_version: 14,
spec_version: 15,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -276,7 +276,7 @@ parameter_types! {
pub const BlockPerEra: BlockNumber = 4 * HOURS;
pub const RegisterDeposit: Balance = 100 * SDN;
pub const DeveloperRewardPercentage: Perbill = Perbill::from_percent(80);
pub const MaxNumberOfStakersPerContract: u32 = 512;
pub const MaxNumberOfStakersPerContract: u32 = 2048;
pub const MinimumStakingAmount: Balance = 5 * SDN;
pub const HistoryDepth: u32 = 60;
pub const BonusEraDuration: u32 = 600;
Expand Down

0 comments on commit c862efd

Please sign in to comment.