We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b542e2 commit 7f22435Copy full SHA for 7f22435
pallets/subtensor/src/staking/helpers.rs
@@ -277,13 +277,4 @@ impl<T: Config> Pallet<T> {
277
278
Ok(credit)
279
}
280
-
281
- // Returns the total amount of stake under a hotkey (delegative or otherwise) on a subnet
282
- //
283
- pub fn get_total_stake_for_hotkey_on_netuid(hotkey: &T::AccountId, netuid: u16) -> u64 {
284
- let alpha: I96F32 =
285
- I96F32::saturating_from_num(Self::get_stake_for_hotkey_on_subnet(hotkey, netuid));
286
- let tao_price: I96F32 = Self::get_alpha_price(netuid);
287
- alpha.saturating_mul(tao_price).saturating_to_num::<u64>()
288
- }
289
0 commit comments