Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
nanocryk committed Dec 4, 2024
1 parent 46ba786 commit 0be97c7
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions pallets/services-payment/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -558,10 +558,7 @@ impl<T: Config> AuthorNotingHook<T::AccountId> for Pallet<T> {
let mint = BalanceOf::<T>::from(2_000_000_000u32) + amount_to_charge;

// mint twice more to not have ED issues
T::Currency::resolve_creating(
&Self::parachain_tank(para_id),
T::Currency::issue(mint),
);
T::Currency::resolve_creating(&Self::parachain_tank(para_id), T::Currency::issue(mint));
}
}

Expand Down

0 comments on commit 0be97c7

Please sign in to comment.