Skip to content

Commit

Permalink
reduce key swap cost to 0.1 TAO
Browse files Browse the repository at this point in the history
  • Loading branch information
camfairchild committed Oct 31, 2024
1 parent bc08dc8 commit 6133648
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 6133648

Please sign in to comment.