From 8480c4f3da39fa1f2eea6e246085e4ab80a35867 Mon Sep 17 00:00:00 2001 From: Jonathan Rainville Date: Tue, 29 Sep 2020 09:56:05 -0400 Subject: [PATCH] chore: fix typo in collectibles.nim Co-authored-by: Eric Mastro --- src/status/wallet/collectibles.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/status/wallet/collectibles.nim b/src/status/wallet/collectibles.nim index eed23e3cdc..1946e69384 100644 --- a/src/status/wallet/collectibles.nim +++ b/src/status/wallet/collectibles.nim @@ -95,7 +95,7 @@ proc getCryptoKittiesBatch*(address: Address, offset: int = 0): seq[Collectible] let total = responseBody["total"].getInt let currentCount = limit * (offset + 1) if (currentCount < total and currentCount < MAX_TOKENS): - # Call the API again with oofset + 1 + # Call the API again with offset + 1 let nextBatch = getCryptoKittiesBatch(address, offset + 1) return concat(cryptokitties, nextBatch) return cryptokitties