Skip to content

Commit 0c28f29

Browse files
committed
Merge branch 'devnet-ready' into feat/devnet-companion/check-metadata-hash-extension
2 parents 4a4adfd + aa5e890 commit 0c28f29

File tree

8 files changed

+67
-11
lines changed

8 files changed

+67
-11
lines changed

pallets/subtensor/src/benchmarks.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ benchmarks! {
8080
// This is a whitelisted caller who can make transaction without weights.
8181
let caller: T::AccountId = whitelisted_caller::<AccountIdOf<T>>();
8282
let caller_origin = <T as frame_system::Config>::RuntimeOrigin::from(RawOrigin::Signed(caller.clone()));
83-
let netuid: u16 = 1;
83+
let netuid: u16 = 0;
8484
let version_key: u64 = 1;
8585
let tempo: u16 = 1;
8686
let modality: u16 = 0;

pallets/subtensor/src/epoch.rs

-2
Original file line numberDiff line numberDiff line change
@@ -188,8 +188,6 @@ impl<T: Config> Pallet<T> {
188188
// =================================
189189

190190
// Compute emission scores.
191-
192-
// Compute normalized emission scores. range: I32F32(0, 1)
193191
// Compute normalized emission scores. range: I32F32(0, 1)
194192
let combined_emission: Vec<I32F32> = incentive
195193
.iter()

pallets/subtensor/src/lib.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -2045,9 +2045,10 @@ pub mod pallet {
20452045

20462046
/// Attempt to adjust the senate membership to include a hotkey
20472047
#[pallet::call_index(63)]
2048-
#[pallet::weight((Weight::from_parts(0, 0)
2049-
.saturating_add(T::DbWeight::get().reads(0))
2050-
.saturating_add(T::DbWeight::get().writes(0)), DispatchClass::Normal, Pays::Yes))]
2048+
#[pallet::weight((Weight::from_parts(50_000_000, 0)
2049+
.saturating_add(Weight::from_parts(0, 4632))
2050+
.saturating_add(T::DbWeight::get().reads(5))
2051+
.saturating_add(T::DbWeight::get().writes(1)), DispatchClass::Normal, Pays::Yes))]
20512052
pub fn adjust_senate(origin: OriginFor<T>, hotkey: T::AccountId) -> DispatchResult {
20522053
Self::do_adjust_senate(origin, hotkey)
20532054
}

pallets/subtensor/src/migration.rs

+7
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,13 @@ pub fn do_migrate_fix_total_coldkey_stake<T: Config>() -> Weight {
3737
// Initialize the weight with one read operation.
3838
let mut weight = T::DbWeight::get().reads(1);
3939

40+
// Clear everything from the map first, no limit (u32::MAX)
41+
let removal_results = TotalColdkeyStake::<T>::clear(u32::MAX, None);
42+
// 1 read/write per removal
43+
let entries_removed: u64 = removal_results.backend.into();
44+
weight =
45+
weight.saturating_add(T::DbWeight::get().reads_writes(entries_removed, entries_removed));
46+
4047
// Iterate through all staking hotkeys.
4148
for (coldkey, hotkey_vec) in StakingHotkeys::<T>::iter() {
4249
// Init the zero value.

pallets/subtensor/tests/migration.rs

+17
Original file line numberDiff line numberDiff line change
@@ -392,6 +392,23 @@ fn test_migrate_fix_total_coldkey_stake_runs_once() {
392392
})
393393
}
394394

395+
// SKIP_WASM_BUILD=1 RUST_LOG=info cargo test --test migration -- test_migrate_fix_total_coldkey_stake_starts_with_value_no_stake_map_entries --exact --nocapture
396+
#[test]
397+
fn test_migrate_fix_total_coldkey_stake_starts_with_value_no_stake_map_entries() {
398+
new_test_ext(1).execute_with(|| {
399+
let migration_name = "fix_total_coldkey_stake_v7";
400+
let coldkey = U256::from(0);
401+
TotalColdkeyStake::<Test>::insert(coldkey, 123_456_789);
402+
403+
// Notably, coldkey has no stake map or staking_hotkeys map entries
404+
405+
let weight = run_migration_and_check(migration_name);
406+
assert!(weight != Weight::zero());
407+
// Therefore 0
408+
assert_eq!(TotalColdkeyStake::<Test>::get(coldkey), 0);
409+
})
410+
}
411+
395412
fn run_migration_and_check(migration_name: &'static str) -> frame_support::weights::Weight {
396413
// Execute the migration and store its weight
397414
let weight: frame_support::weights::Weight =

pallets/subtensor/tests/mock.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
11
#![allow(clippy::arithmetic_side_effects, clippy::unwrap_used)]
2-
use frame_support::derive_impl;
3-
use frame_support::dispatch::DispatchResultWithPostInfo;
4-
use frame_support::weights::constants::RocksDbWeight;
2+
53
// use frame_support::weights::constants::WEIGHT_PER_SECOND;
64
use frame_support::weights::Weight;
75
use frame_support::{
8-
assert_ok, parameter_types,
6+
assert_ok, derive_impl,
7+
dispatch::DispatchResultWithPostInfo,
8+
parameter_types,
99
traits::{Everything, Hooks},
10+
weights::constants::RocksDbWeight,
1011
};
1112
use frame_system as system;
1213
use frame_system::{limits, EnsureNever, EnsureRoot, RawOrigin};

pallets/subtensor/tests/staking.rs

+32
Original file line numberDiff line numberDiff line change
@@ -4719,3 +4719,35 @@ fn test_do_schedule_coldkey_swap_regular_user_passes_min_balance() {
47194719
);
47204720
});
47214721
}
4722+
4723+
// SKIP_WASM_BUILD=1 RUST_LOG=info cargo test --test staking -- test_emission_creates_staking_hotkeys_entry --exact --nocapture
4724+
#[test]
4725+
fn test_emission_creates_staking_hotkeys_entry() {
4726+
new_test_ext(1).execute_with(|| {
4727+
let hotkey0 = U256::from(1);
4728+
let hotkey1 = U256::from(2);
4729+
4730+
let coldkey = U256::from(3);
4731+
4732+
// Add to Owner map
4733+
Owner::<Test>::insert(hotkey0, coldkey);
4734+
Owner::<Test>::insert(hotkey1, coldkey);
4735+
OwnedHotkeys::<Test>::insert(coldkey, vec![hotkey0, hotkey1]);
4736+
4737+
// Emit through hotkey
4738+
SubtensorModule::emit_inflation_through_hotkey_account(&hotkey0, 0, 1_000);
4739+
4740+
// Verify StakingHotkeys has an entry
4741+
assert_eq!(StakingHotkeys::<Test>::get(coldkey).len(), 1);
4742+
assert!(StakingHotkeys::<Test>::get(coldkey).contains(&hotkey0));
4743+
4744+
// Try again with another emission on hotkey1
4745+
SubtensorModule::emit_inflation_through_hotkey_account(&hotkey1, 0, 2_000);
4746+
4747+
// Verify both hotkeys are now in the map
4748+
assert_eq!(StakingHotkeys::<Test>::get(coldkey).len(), 2);
4749+
let final_map = StakingHotkeys::<Test>::get(coldkey);
4750+
assert!(final_map.contains(&hotkey0));
4751+
assert!(final_map.contains(&hotkey1));
4752+
})
4753+
}

runtime/src/lib.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
139139
// `spec_version`, and `authoring_version` are the same between Wasm and native.
140140
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
141141
// the compatible custom types.
142-
spec_version: 165,
142+
spec_version: 195,
143143
impl_version: 1,
144144
apis: RUNTIME_API_VERSIONS,
145145
transaction_version: 1,

0 commit comments

Comments
 (0)