diff --git a/pallets/subtensor/src/utils/rate_limiting.rs b/pallets/subtensor/src/utils/rate_limiting.rs index cc3ebc5a3..8b30f9665 100644 --- a/pallets/subtensor/src/utils/rate_limiting.rs +++ b/pallets/subtensor/src/utils/rate_limiting.rs @@ -39,7 +39,7 @@ impl Pallet { /// Get the rate limit for a specific transaction type pub fn get_rate_limit(tx_type: &TransactionType) -> u64 { match tx_type { - TransactionType::SetChildren => 7200, // Cannot set children twice within a day + TransactionType::SetChildren => 150, // 30 minutes TransactionType::SetChildkeyTake => TxChildkeyTakeRateLimit::::get(), TransactionType::Unknown => 0, // Default to no limit for unknown types (no limit) TransactionType::RegisterNetwork => NetworkRateLimit::::get(),