Skip to content

Commit 8b3d120

Browse files
auto-update benchmark weights
1 parent 8cf762e commit 8b3d120

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

pallets/subtensor/src/macros/dispatches.rs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -233,7 +233,7 @@ mod dispatches {
233233
///
234234
#[pallet::call_index(96)]
235235
#[pallet::weight((Weight::from_parts(67_770_000, 0)
236-
.saturating_add(T::DbWeight::get().reads(9_u64))
236+
.saturating_add(T::DbWeight::get().reads(10_u64))
237237
.saturating_add(T::DbWeight::get().writes(2)), DispatchClass::Normal, Pays::No))]
238238
pub fn commit_weights(
239239
origin: T::RuntimeOrigin,
@@ -302,7 +302,7 @@ mod dispatches {
302302
///
303303
#[pallet::call_index(100)]
304304
#[pallet::weight((Weight::from_parts(100_500_000, 0)
305-
.saturating_add(T::DbWeight::get().reads(10_u64))
305+
.saturating_add(T::DbWeight::get().reads(11_u64))
306306
.saturating_add(T::DbWeight::get().writes(2)), DispatchClass::Normal, Pays::No))]
307307
pub fn batch_commit_weights(
308308
origin: OriginFor<T>,
@@ -1314,8 +1314,8 @@ mod dispatches {
13141314
/// User register a new subnetwork
13151315
#[pallet::call_index(59)]
13161316
#[pallet::weight((Weight::from_parts(235_400_000, 0)
1317-
.saturating_add(T::DbWeight::get().reads(37_u64))
1318-
.saturating_add(T::DbWeight::get().writes(51_u64)), DispatchClass::Normal, Pays::Yes))]
1317+
.saturating_add(T::DbWeight::get().reads(39_u64))
1318+
.saturating_add(T::DbWeight::get().writes(57_u64)), DispatchClass::Normal, Pays::Yes))]
13191319
pub fn register_network(origin: OriginFor<T>, hotkey: T::AccountId) -> DispatchResult {
13201320
Self::do_register_network(origin, &hotkey, 1, None)
13211321
}
@@ -1601,8 +1601,8 @@ mod dispatches {
16011601
/// User register a new subnetwork
16021602
#[pallet::call_index(79)]
16031603
#[pallet::weight((Weight::from_parts(234_200_000, 0)
1604-
.saturating_add(T::DbWeight::get().reads(36_u64))
1605-
.saturating_add(T::DbWeight::get().writes(50_u64)), DispatchClass::Normal, Pays::Yes))]
1604+
.saturating_add(T::DbWeight::get().reads(38_u64))
1605+
.saturating_add(T::DbWeight::get().writes(56_u64)), DispatchClass::Normal, Pays::Yes))]
16061606
pub fn register_network_with_identity(
16071607
origin: OriginFor<T>,
16081608
hotkey: T::AccountId,
@@ -2265,7 +2265,7 @@ mod dispatches {
22652265
/// - The client (bittensor-drand) version
22662266
#[pallet::call_index(113)]
22672267
#[pallet::weight((Weight::from_parts(80_690_000, 0)
2268-
.saturating_add(T::DbWeight::get().reads(9_u64))
2268+
.saturating_add(T::DbWeight::get().reads(10_u64))
22692269
.saturating_add(T::DbWeight::get().writes(2)), DispatchClass::Normal, Pays::No))]
22702270
pub fn commit_timelocked_weights(
22712271
origin: T::RuntimeOrigin,

0 commit comments

Comments
 (0)