You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
assert(ref!=nil, message: "NFTStorefront.Listing.borrowNFT: Could not borrow a reference to the NFT in the listing!")
251
251
assert(
252
252
ref!.isInstance(self.getDetails().nftType),
253
-
message: "NFTStorefront.Listing.borrowNFT: The type of the NFT provided by the owner <\(ref!.getType().identifier) does not match the type in the listing <\(self.getDetails().nftType.identifier)!"
253
+
message: "NFTStorefront.Listing.borrowNFT: The type of the NFT provided by the owner <\(ref!.getType().identifier)> does not match the type in the listing <\(self.getDetails().nftType.identifier)>!"
// and we must check the NFT resource it gives us to make sure that it is the correct one.
295
295
assert(
296
296
nft.isInstance(self.details.nftType),
297
-
message: "NFTStorefront.Listing.purchase: Cannot purchase listing! The type of the NFT provided by the seller <\(nft.getType().identifier) does not match the type in the listing details <\(self.details.nftType.identifier)!"
297
+
message: "NFTStorefront.Listing.purchase: Cannot purchase listing! The type of the NFT provided by the seller <\(nft.getType().identifier)> does not match the type in the listing details <\(self.details.nftType.identifier)>!"
// and we must check the NFT resource it gives us to make sure that it is the correct one.
403
403
assert(
404
404
nft.getType() ==self.details.nftType,
405
-
message: "NFTStorefrontV2.Listing.purchase: The type of the NFT provided by the seller <\(nft.getType().identifier) does not match the type in the listing details <\(self.details.nftType.identifier)!"
405
+
message: "NFTStorefrontV2.Listing.purchase: The type of the NFT provided by the seller <\(nft.getType().identifier)> does not match the type in the listing details <\(self.details.nftType.identifier)>!"
0 commit comments