Skip to content

Commit

Permalink
style: fixed formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
chexware committed Jul 9, 2024
1 parent e0a6691 commit 5af2551
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion pallets/nft/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1718,7 +1718,16 @@ impl<T: Config> NFTTrait<T::AccountId, BalanceOf<T>> for Pallet<T> {
metadata: NftMetadata,
attributes: Attributes,
) -> Result<Self::TokenId, DispatchError> {
Self::do_mint_nft_with_token_id(sender, sender, class_id, Some(token_id), metadata, attributes, false, false)
Self::do_mint_nft_with_token_id(
sender,
sender,
class_id,
Some(token_id),
metadata,
attributes,
false,
false,
)
}

fn get_free_stackable_nft_balance(who: &T::AccountId, asset_id: &(Self::ClassId, Self::TokenId)) -> BalanceOf<T> {
Expand Down

0 comments on commit 5af2551

Please sign in to comment.