From 0706e8a05f200f8fa462686f065b5d29918502e0 Mon Sep 17 00:00:00 2001 From: Rubberbandits Date: Wed, 29 Mar 2023 14:57:20 -0400 Subject: [PATCH 1/2] Update TxRateLimit hyperparam for uid3 --- hyperparameters.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hyperparameters.md b/hyperparameters.md index 98b2ffcbb1..e510d99bee 100644 --- a/hyperparameters.md +++ b/hyperparameters.md @@ -34,6 +34,6 @@ ServingRateLimit: u64 = 250; // [250 @ 7,166] Burn: u64 = 1_000_000_000; // 1 tao MinBurn: u64 = 1_000_000_000; // 1 tao MaxBurn: u64 = 100_000_000_000; // 100 tao -TxRateLimit: u64 = 1000; +TxRateLimit: u64 = 50; // 1000 blocks [50 @ 65,000] WeightsSetRateLimit: u64 = 250; // [250 @ 7,168] ``` \ No newline at end of file From 7052480dd5119f5ef069dacb0254166f87aa8edf Mon Sep 17 00:00:00 2001 From: Rubberbandits Date: Wed, 29 Mar 2023 14:58:43 -0400 Subject: [PATCH 2/2] Update initial TxRateLimit to 50 --- runtime/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index f137da396a..317053c7f5 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -349,7 +349,7 @@ parameter_types! { pub const SubtensorInitialBurn: u64 = 1_000_000_000; // 1 tao pub const SubtensorInitialMinBurn: u64 = 1_000_000_000; // 1 tao pub const SubtensorInitialMaxBurn: u64 = 100_000_000_000; // 100 tao - pub const SubtensorInitialTxRateLimit: u64 = 1000; + pub const SubtensorInitialTxRateLimit: u64 = 50; } impl pallet_subtensor::Config for Runtime {