diff --git a/pallets/subtensor/src/lib.rs b/pallets/subtensor/src/lib.rs index ef2d44e68b..7d42880a21 100644 --- a/pallets/subtensor/src/lib.rs +++ b/pallets/subtensor/src/lib.rs @@ -2359,10 +2359,11 @@ pub mod pallet { #[pallet::storage] pub type HasMigrationRun = StorageMap<_, Identity, Vec, bool, ValueQuery>; - /// Default value for pending childkey cooldown (settable by root, default 0) + /// Default value for pending childkey cooldown (settable by root). + /// Uses the same value as DefaultPendingCooldown for consistency. #[pallet::type_value] pub fn DefaultPendingChildKeyCooldown() -> u64 { - 0 + DefaultPendingCooldown::::get() } /// Storage value for pending childkey cooldown, settable by root.