From 6b2876351ebb5ef1e825560e8ca6a891d52a2069 Mon Sep 17 00:00:00 2001 From: Luke Parker Date: Fri, 24 Nov 2023 21:41:59 -0500 Subject: [PATCH] Add file meant for prior commit --- substrate/runtime/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/substrate/runtime/src/lib.rs b/substrate/runtime/src/lib.rs index b6950c1a..2541d579 100644 --- a/substrate/runtime/src/lib.rs +++ b/substrate/runtime/src/lib.rs @@ -257,9 +257,9 @@ impl Convert> for IdentityValidatorIdOf { impl signals::Config for Runtime { type RuntimeEvent = RuntimeEvent; // 1 week - type ValidityDuration = ConstU32<{ (7 * 24 * 60 * 60) / (TARGET_BLOCK_TIME as u32) }>; + type RetirementValidityDuration = ConstU32<{ (7 * 24 * 60 * 60) / (TARGET_BLOCK_TIME as u32) }>; // 2 weeks - type LockInDuration = ConstU32<{ (2 * 7 * 24 * 60 * 60) / (TARGET_BLOCK_TIME as u32) }>; + type RetirementLockInDuration = ConstU32<{ (2 * 7 * 24 * 60 * 60) / (TARGET_BLOCK_TIME as u32) }>; } impl in_instructions::Config for Runtime {