We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ce6495 commit 78b7950Copy full SHA for 78b7950
packages/api/src/resourcePriceFunctions/celestiaIndexer.ts
@@ -69,14 +69,7 @@ class CelestiaIndexer implements IResourcePriceIndexer {
69
data = await response.json();
70
71
if (response.ok) {
72
- if (Array.isArray(data) && data.length > 0) {
73
- break;
74
- } else {
75
- console.error(
76
- `[CelestiaIndexer] Info for block ${currentBlockToPoll} hasn't been written to the API yet! We are most likely in a API cache death spiral...`
77
- );
78
- return;
79
- }
+ break;
80
}
81
82
console.error(
0 commit comments