Skip to content

Commit

Permalink
Merge pull request #897 from opentensor/feat/lower-key-swap-cost
Browse files Browse the repository at this point in the history
Reduce key swap cost to 0.1 TAO
  • Loading branch information
unconst authored Oct 31, 2024
2 parents e8cd841 + 6133648 commit e8d926a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -956,7 +956,7 @@ parameter_types! {
pub const SubtensorInitialNetworkLockReductionInterval: u64 = 14 * 7200;
pub const SubtensorInitialNetworkRateLimit: u64 = 7200;
pub const SubtensorInitialTargetStakesPerInterval: u16 = 1;
pub const SubtensorInitialKeySwapCost: u64 = 1_000_000_000;
pub const SubtensorInitialKeySwapCost: u64 = 100_000_000; // 0.1 TAO
pub const InitialAlphaHigh: u16 = 58982; // Represents 0.9 as per the production default
pub const InitialAlphaLow: u16 = 45875; // Represents 0.7 as per the production default
pub const InitialLiquidAlphaOn: bool = false; // Default value for LiquidAlphaOn
Expand Down

0 comments on commit e8d926a

Please sign in to comment.