Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/docker-localnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ permissions:

jobs:
publish:
runs-on: [self-hosted, type-ccx33]
runs-on: [self-hosted, type-ccx53, type-ccx43, type-ccx33]

steps:
- name: Determine Docker tag and ref
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ permissions:

jobs:
publish:
runs-on: [self-hosted, type-ccx33]
runs-on: [self-hosted, type-ccx53, type-ccx43, type-ccx33]

steps:
- name: Determine Docker tag and ref
Expand Down
6 changes: 3 additions & 3 deletions pallets/subtensor/src/macros/dispatches.rs
Original file line number Diff line number Diff line change
Expand Up @@ -120,9 +120,9 @@ mod dispatches {
/// - On failure for each failed item in the batch.
///
#[pallet::call_index(80)]
#[pallet::weight((Weight::from_parts(95_160_000, 0)
.saturating_add(T::DbWeight::get().reads(14))
.saturating_add(T::DbWeight::get().writes(2)), DispatchClass::Normal, Pays::No))]
#[pallet::weight((Weight::from_parts(19_330_000, 0)
.saturating_add(T::DbWeight::get().reads(1_u64))
.saturating_add(T::DbWeight::get().writes(0_u64)), DispatchClass::Normal, Pays::No))]
pub fn batch_set_weights(
origin: OriginFor<T>,
netuids: Vec<Compact<NetUid>>,
Expand Down