@@ -1028,7 +1028,7 @@ mod dispatches {
10281028 #[ pallet:: call_index( 62 ) ]
10291029 #[ pallet:: weight( ( Weight :: from_parts( 135_900_000 , 0 )
10301030 . saturating_add( T :: DbWeight :: get( ) . reads( 24_u64 ) )
1031- . saturating_add( T :: DbWeight :: get( ) . writes( 20 ) ) , DispatchClass :: Normal , Pays :: No ) ) ]
1031+ . saturating_add( T :: DbWeight :: get( ) . writes( 20 ) ) , DispatchClass :: Normal , Pays :: Yes ) ) ]
10321032 pub fn root_register ( origin : OriginFor < T > , hotkey : T :: AccountId ) -> DispatchResult {
10331033 Self :: do_root_register ( origin, hotkey)
10341034 }
@@ -1087,7 +1087,7 @@ mod dispatches {
10871087 #[ pallet:: call_index( 71 ) ]
10881088 #[ pallet:: weight( ( Weight :: from_parts( 161_700_000 , 0 )
10891089 . saturating_add( T :: DbWeight :: get( ) . reads( 16_u64 ) )
1090- . saturating_add( T :: DbWeight :: get( ) . writes( 9 ) ) , DispatchClass :: Operational , Pays :: No ) ) ]
1090+ . saturating_add( T :: DbWeight :: get( ) . writes( 9 ) ) , DispatchClass :: Operational , Pays :: Yes ) ) ]
10911091 pub fn swap_coldkey (
10921092 origin : OriginFor < T > ,
10931093 old_coldkey : T :: AccountId ,
@@ -1169,7 +1169,7 @@ mod dispatches {
11691169 . saturating_add( T :: DbWeight :: get( ) . reads( 0 ) )
11701170 . saturating_add( T :: DbWeight :: get( ) . writes( 1 ) ) ,
11711171 DispatchClass :: Operational ,
1172- Pays :: No
1172+ Pays :: Yes
11731173 ) ) ]
11741174 pub fn sudo_set_tx_childkey_take_rate_limit (
11751175 origin : OriginFor < T > ,
@@ -1197,7 +1197,7 @@ mod dispatches {
11971197 . saturating_add( T :: DbWeight :: get( ) . reads( 1 ) )
11981198 . saturating_add( T :: DbWeight :: get( ) . writes( 1 ) ) ,
11991199 DispatchClass :: Operational ,
1200- Pays :: No
1200+ Pays :: Yes
12011201 ) ) ]
12021202 pub fn sudo_set_min_childkey_take ( origin : OriginFor < T > , take : u16 ) -> DispatchResult {
12031203 ensure_root ( origin) ?;
@@ -1222,7 +1222,7 @@ mod dispatches {
12221222 . saturating_add( T :: DbWeight :: get( ) . reads( 1 ) )
12231223 . saturating_add( T :: DbWeight :: get( ) . writes( 1 ) ) ,
12241224 DispatchClass :: Operational ,
1225- Pays :: No
1225+ Pays :: Yes
12261226 ) ) ]
12271227 pub fn sudo_set_max_childkey_take ( origin : OriginFor < T > , take : u16 ) -> DispatchResult {
12281228 ensure_root ( origin) ?;
@@ -1251,7 +1251,7 @@ mod dispatches {
12511251 /// ## Complexity
12521252 /// - O(1).
12531253 #[ pallet:: call_index( 51 ) ]
1254- #[ pallet:: weight( ( Weight :: from_parts( 111_100_000 , 0 ) , DispatchClass :: Operational , Pays :: No ) ) ]
1254+ #[ pallet:: weight( ( Weight :: from_parts( 111_100_000 , 0 ) , DispatchClass :: Operational , Pays :: Yes ) ) ]
12551255 pub fn sudo (
12561256 origin : OriginFor < T > ,
12571257 call : Box < T :: SudoRuntimeCall > ,
@@ -1276,7 +1276,7 @@ mod dispatches {
12761276 /// - O(1).
12771277 #[ allow( deprecated) ]
12781278 #[ pallet:: call_index( 52 ) ]
1279- #[ pallet:: weight( ( * weight, call. get_dispatch_info( ) . class, Pays :: No ) ) ]
1279+ #[ pallet:: weight( ( * weight, call. get_dispatch_info( ) . class, Pays :: Yes ) ) ]
12801280 pub fn sudo_unchecked_weight (
12811281 origin : OriginFor < T > ,
12821282 call : Box < T :: SudoRuntimeCall > ,
@@ -1345,7 +1345,7 @@ mod dispatches {
13451345 #[ pallet:: call_index( 61 ) ]
13461346 #[ pallet:: weight( ( Weight :: from_parts( 119_000_000 , 0 )
13471347 . saturating_add( T :: DbWeight :: get( ) . reads( 6 ) )
1348- . saturating_add( T :: DbWeight :: get( ) . writes( 31 ) ) , DispatchClass :: Operational , Pays :: No ) ) ]
1348+ . saturating_add( T :: DbWeight :: get( ) . writes( 31 ) ) , DispatchClass :: Operational , Pays :: Yes ) ) ]
13491349 pub fn dissolve_network (
13501350 origin : OriginFor < T > ,
13511351 _coldkey : T :: AccountId ,
@@ -1527,7 +1527,7 @@ mod dispatches {
15271527 /// - The ip type v4 or v6.
15281528 ///
15291529 #[ pallet:: call_index( 68 ) ]
1530- #[ pallet:: weight( ( Weight :: from_parts( 30_550_000 , 0 )
1530+ #[ pallet:: weight( ( Weight :: from_parts( 38_230_000 , 0 )
15311531 . saturating_add( T :: DbWeight :: get( ) . reads( 3 ) )
15321532 . saturating_add( T :: DbWeight :: get( ) . writes( 1 ) ) , DispatchClass :: Normal , Pays :: Yes ) ) ]
15331533 pub fn set_identity (
@@ -1569,7 +1569,7 @@ mod dispatches {
15691569 /// * `subnet_contact` (Vec<u8>):
15701570 /// - The contact information for the subnet.
15711571 #[ pallet:: call_index( 78 ) ]
1572- #[ pallet:: weight( ( Weight :: from_parts( 18_980_000 , 0 )
1572+ #[ pallet:: weight( ( Weight :: from_parts( 24_350_000 , 0 )
15731573 . saturating_add( T :: DbWeight :: get( ) . reads( 1 ) )
15741574 . saturating_add( T :: DbWeight :: get( ) . writes( 1 ) ) , DispatchClass :: Normal , Pays :: Yes ) ) ]
15751575 pub fn set_subnet_identity (
@@ -2120,7 +2120,7 @@ mod dispatches {
21202120
21212121 /// Sets the pending childkey cooldown (in blocks). Root only.
21222122 #[ pallet:: call_index( 109 ) ]
2123- #[ pallet:: weight( ( Weight :: from_parts( 10_000 , 0 ) , DispatchClass :: Operational , Pays :: No ) ) ]
2123+ #[ pallet:: weight( ( Weight :: from_parts( 10_000 , 0 ) , DispatchClass :: Operational , Pays :: Yes ) ) ]
21242124 pub fn set_pending_childkey_cooldown (
21252125 origin : OriginFor < T > ,
21262126 cooldown : u64 ,
@@ -2261,7 +2261,7 @@ mod dispatches {
22612261 /// * commit_reveal_version (`u16`):
22622262 /// - The client (bittensor-drand) version
22632263 #[ pallet:: call_index( 113 ) ]
2264- #[ pallet:: weight( ( Weight :: from_parts( 80_690_000 , 0 )
2264+ #[ pallet:: weight( ( Weight :: from_parts( 63_160_000 , 0 )
22652265 . saturating_add( T :: DbWeight :: get( ) . reads( 10_u64 ) )
22662266 . saturating_add( T :: DbWeight :: get( ) . writes( 2 ) ) , DispatchClass :: Normal , Pays :: No ) ) ]
22672267 pub fn commit_timelocked_weights (
0 commit comments