@@ -79,9 +79,9 @@ impl<T: Config> Pallet<T> {
79
79
80
80
let axon_info = Self :: get_axon_info ( netuid, & hotkey. clone ( ) ) ;
81
81
82
- let prometheus_info = Self :: get_prometheus_info ( netuid, & hotkey. clone ( ) ) ;
82
+ let prometheus_info = Self :: get_prometheus_info ( netuid, & hotkey) ;
83
83
84
- let coldkey = Owner :: < T > :: get ( hotkey. clone ( ) ) . clone ( ) ;
84
+ let coldkey = Owner :: < T > :: get ( & hotkey) . clone ( ) ;
85
85
86
86
let active = Self :: get_active_for_uid ( netuid, uid) ;
87
87
let rank = Self :: get_rank_for_uid ( netuid, uid) ;
@@ -119,8 +119,8 @@ impl<T: Config> Pallet<T> {
119
119
let stake_weight: u64 = Self :: get_stake_weight ( netuid, uid) as u64 ;
120
120
let stake: Vec < ( T :: AccountId , Compact < u64 > ) > = vec ! [ ( coldkey. clone( ) , stake_weight. into( ) ) ] ;
121
121
let neuron = NeuronInfo {
122
- hotkey : hotkey . clone ( ) ,
123
- coldkey : coldkey . clone ( ) ,
122
+ hotkey,
123
+ coldkey,
124
124
uid : uid. into ( ) ,
125
125
netuid : netuid. into ( ) ,
126
126
active,
@@ -179,8 +179,8 @@ impl<T: Config> Pallet<T> {
179
179
let stake: Vec < ( T :: AccountId , Compact < u64 > ) > = vec ! [ ( coldkey. clone( ) , stake_weight. into( ) ) ] ;
180
180
181
181
let neuron = NeuronInfoLite {
182
- hotkey : hotkey . clone ( ) ,
183
- coldkey : coldkey . clone ( ) ,
182
+ hotkey,
183
+ coldkey,
184
184
uid : uid. into ( ) ,
185
185
netuid : netuid. into ( ) ,
186
186
active,
0 commit comments