Skip to content

Commit

Permalink
Reduce the SessionPeriod for testnet and local
Browse files Browse the repository at this point in the history
  • Loading branch information
wilwade committed Oct 23, 2024
1 parent 11225b1 commit bb56851
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/common/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ pub type MaximumCapacityBatchLength = ConstU8<10>;
// -end- Frequency Transaction Payment Pallet ---

// --- Session Pallet ---
pub type SessionPeriod = ConstU32<{ 6 * HOURS }>;
pub type SessionPeriod = ConstU32<{ prod_or_testnet_or_local!(6 * HOURS, 30 * MINUTES, 5 * MINUTES) }>
pub type SessionOffset = ZERO;
// -end- Session Pallet ---

Expand Down

0 comments on commit bb56851

Please sign in to comment.