Skip to content

Commit 0dc9f2d

Browse files
committed
use format string for hk logging
1 parent cefe888 commit 0dc9f2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pallets/subtensor/src/migrations/migrate_dissolve_sn73.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ pub fn migrate_dissolve_sn73<T: Config>() -> Weight {
4949
// Iterate over every hotkey and distribute the TAO from the pool
5050
// using previous total alpha as the denominator
5151
for hotkey in hotkeys_to_remove.iter() {
52-
log::debug!("Hotkey: {}", hotkey);
52+
log::debug!("Hotkey: {:?}", hotkey.clone());
5353

5454
let total_hotkey_alpha_i = TotalHotkeyAlpha::<T>::get(hotkey.clone(), this_netuid);
5555
let total_hotkey_alpha = I96F32::from_num(total_hotkey_alpha_i);

0 commit comments

Comments
 (0)