Skip to content

Commit

Permalink
Update lib.rs
Browse files Browse the repository at this point in the history
Corrected the limit of 20 nodes because heartbeat is not correct at hte moment
  • Loading branch information
ehsan6sha authored May 9, 2024
1 parent 904bea7 commit b073df0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ impl validator_set::Config for Runtime {

parameter_types! {
// SBP-M1 review: consider increasing period (e.g. 6 hours is default within parachain template: https://github.com/paritytech/cumulus/blob/9e187970ff89169b795343d6ebcff53158b61324/parachain-template/runtime/src/lib.rs#L407)
pub const Period: u32 = 2 * MINUTES;
pub const Period: u32 = 100 * MINUTES;
pub const Offset: u32 = 0;
}

Expand Down

0 comments on commit b073df0

Please sign in to comment.