From cd292e3351226b30ae7b3d65fca0f4182d7a0805 Mon Sep 17 00:00:00 2001 From: Cameron Fairchild Date: Tue, 29 Oct 2024 15:37:07 -0400 Subject: [PATCH] no dyn tempos --- pallets/subtensor/src/coinbase/block_step.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pallets/subtensor/src/coinbase/block_step.rs b/pallets/subtensor/src/coinbase/block_step.rs index 6ad38c3fc..2fa779c77 100644 --- a/pallets/subtensor/src/coinbase/block_step.rs +++ b/pallets/subtensor/src/coinbase/block_step.rs @@ -16,10 +16,10 @@ impl Pallet { // TODO(const) make this better. // Per const: remove dynamic tempos for now, just make the min and the max value always // 300 blocks. (not 360) - if block_number.saturating_add(1) % 300 == 0 { - // adjust every hour. - Self::adjust_tempos(); - } + // if block_number.saturating_add(1) % 300 == 0 { + // // adjust every hour. + // Self::adjust_tempos(); + //} // --- 4. Anneal global weight Self::adjust_global_weight(block_number); // Return ok.