From c58ad766b667707e9af86282e6e09b0ba4590830 Mon Sep 17 00:00:00 2001 From: Dennis Dawson Date: Mon, 26 Sep 2022 15:21:07 -0700 Subject: [PATCH] Update content/tutorials/quickstart/batch-minting.md Co-authored-by: Rome Reginelli --- content/tutorials/quickstart/batch-minting.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/tutorials/quickstart/batch-minting.md b/content/tutorials/quickstart/batch-minting.md index 9cfcf9f67e..ddefc89356 100644 --- a/content/tutorials/quickstart/batch-minting.md +++ b/content/tutorials/quickstart/batch-minting.md @@ -139,7 +139,7 @@ Request the `account_nfts`. Set the `limit` to 400, the maximum amount, to retri If the list of `NFTokens` exceeds your limit, the result includes a `marker` field that you can use as a parameter for the next `account_nfts` request. The `marker` indicates where the next batch of records starts. While the `marker` field is present, continue to request another batch of NFToken records. ```javascript - while (nfts.result.marker != null) + while (nfts.result.marker) { nfts = await client.request({ method: "account_nfts",