From 125aa1a740ad642849e81ad5ee891325fee10f13 Mon Sep 17 00:00:00 2001 From: FT <140458077+zeevick10@users.noreply.github.com> Date: Wed, 18 Dec 2024 17:22:32 +0100 Subject: [PATCH] Update nft-storage.ts --- auction-house/cli/src/helpers/upload/nft-storage.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auction-house/cli/src/helpers/upload/nft-storage.ts b/auction-house/cli/src/helpers/upload/nft-storage.ts index 8f8a0f9800..88c412bbd2 100644 --- a/auction-house/cli/src/helpers/upload/nft-storage.ts +++ b/auction-house/cli/src/helpers/upload/nft-storage.ts @@ -50,7 +50,7 @@ export async function* nftStorageUploadGenerator({ }): AsyncGenerator { // split asset keys into batches, each of which will be bundled into a CAR file and uploaded separately // default to 50 NFTs per "batch" if no batchSize is given. - // larger batches require fewer signatures and will be slightly faster overall if everything is sucessful, + // larger batches require fewer signatures and will be slightly faster overall if everything is successful, // but smaller batches will take less time to retry if there's an error during upload. batchSize = batchSize || 50; batchSize = Math.min(batchSize, NFTBundle.MAX_ENTRIES);