Skip to content

Commit 92f4b99

Browse files
committed
fix utility::force_batch weight mismatch
1 parent 6d3ab3a commit 92f4b99

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pallets/utility/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -448,7 +448,7 @@ pub mod pallet {
448448
} else {
449449
Self::deposit_event(Event::BatchCompleted);
450450
}
451-
let base_weight = T::WeightInfo::batch(calls_len as u32);
451+
let base_weight = T::WeightInfo::force_batch(calls_len as u32);
452452
Ok(Some(base_weight.saturating_add(weight)).into())
453453
}
454454

0 commit comments

Comments
 (0)