diff --git a/pallets/subtensor/src/migrations/migrate_rao.rs b/pallets/subtensor/src/migrations/migrate_rao.rs index d575c07f5..41f737734 100644 --- a/pallets/subtensor/src/migrations/migrate_rao.rs +++ b/pallets/subtensor/src/migrations/migrate_rao.rs @@ -60,7 +60,7 @@ pub fn migrate_rao() -> Weight { // Convert subnets and give them lock. // Set global weight to 18% from the start - TaoWeight::::set(332_041_393_326_771_929); + TaoWeight::::set(3_320_413_933_267_719_290); for netuid in netuids.iter().clone() { if *netuid == 0 { // Give root a single RAO in pool to avoid any catestrophic division by zero. diff --git a/runtime/src/lib.rs b/runtime/src/lib.rs index 85ede567a..243b87d5a 100644 --- a/runtime/src/lib.rs +++ b/runtime/src/lib.rs @@ -1042,7 +1042,7 @@ parameter_types! { pub const SubtensorInitialNetworkMaxStake: u64 = u64::MAX; // Maximum possible value for u64, this make the make stake infinity pub const InitialColdkeySwapScheduleDuration: BlockNumber = 5 * 24 * 60 * 60 / 12; // 5 days pub const InitialDissolveNetworkScheduleDuration: BlockNumber = 5 * 24 * 60 * 60 / 12; // 5 days - pub const SubtensorInitialTaoWeight: u64 = 332_041_393_326_771_929; // 18% global weigh. + pub const SubtensorInitialTaoWeight: u64 = 3_320_413_933_267_719_290; // 18% global weigh. } impl pallet_subtensor::Config for Runtime {