Skip to content

Commit 5de9490

Browse files
authored
Merge pull request #898 from opentensor/feat/lower-key-swap-cost
Reduce key swap cost to 0.1 TAO
2 parents f3b76d8 + 6133648 commit 5de9490

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

runtime/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -951,7 +951,7 @@ parameter_types! {
951951
pub const SubtensorInitialNetworkLockReductionInterval: u64 = 14 * 7200;
952952
pub const SubtensorInitialNetworkRateLimit: u64 = 7200;
953953
pub const SubtensorInitialTargetStakesPerInterval: u16 = 1;
954-
pub const SubtensorInitialKeySwapCost: u64 = 1_000_000_000;
954+
pub const SubtensorInitialKeySwapCost: u64 = 100_000_000; // 0.1 TAO
955955
pub const InitialAlphaHigh: u16 = 58982; // Represents 0.9 as per the production default
956956
pub const InitialAlphaLow: u16 = 45875; // Represents 0.7 as per the production default
957957
pub const InitialLiquidAlphaOn: bool = false; // Default value for LiquidAlphaOn

0 commit comments

Comments
 (0)