Skip to content

Commit e8d926a

Browse files
authored
Merge pull request #897 from opentensor/feat/lower-key-swap-cost
Reduce key swap cost to 0.1 TAO
2 parents e8cd841 + 6133648 commit e8d926a

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
@@ -956,7 +956,7 @@ parameter_types! {
956956
pub const SubtensorInitialNetworkLockReductionInterval: u64 = 14 * 7200;
957957
pub const SubtensorInitialNetworkRateLimit: u64 = 7200;
958958
pub const SubtensorInitialTargetStakesPerInterval: u16 = 1;
959-
pub const SubtensorInitialKeySwapCost: u64 = 1_000_000_000;
959+
pub const SubtensorInitialKeySwapCost: u64 = 100_000_000; // 0.1 TAO
960960
pub const InitialAlphaHigh: u16 = 58982; // Represents 0.9 as per the production default
961961
pub const InitialAlphaLow: u16 = 45875; // Represents 0.7 as per the production default
962962
pub const InitialLiquidAlphaOn: bool = false; // Default value for LiquidAlphaOn

0 commit comments

Comments
 (0)