Skip to content

Commit cdb14d6

Browse files
committed
feat: heal extrinsic is now "free"
1 parent 2d8e3ec commit cdb14d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

  • substrate/frame/vaults/src

substrate/frame/vaults/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1564,7 +1564,7 @@ pub mod pallet {
15641564
///
15651565
/// - [`Event::BadDebtRepaid`]: Emitted with the amount of bad debt healed.
15661566
#[pallet::call_index(11)]
1567-
#[pallet::weight(T::WeightInfo::heal())]
1567+
#[pallet::weight((T::WeightInfo::heal(), Pays::No))]
15681568
pub fn heal(origin: OriginFor<T>, amount: BalanceOf<T>) -> DispatchResult {
15691569
ensure_signed(origin)?;
15701570

0 commit comments

Comments
 (0)