diff --git a/src/provider/modules/tip.ts b/src/provider/modules/tip.ts index fb6dd4d3f..5006dfe49 100644 --- a/src/provider/modules/tip.ts +++ b/src/provider/modules/tip.ts @@ -316,7 +316,7 @@ async function getTipStatsParallel( // Handle insufficient transaction data if (allTips.length < minTxsNecessary) { - logger.error( + logger.warn( `Insufficient transaction data: found ${allTips.length} V3 transactions with tips in ${analyzedBlocks} blocks ` + `(block range: ${Math.max(0, startingBlockNumber - maxBlocks + 1)}-${startingBlockNumber}). ` + `Required: ${minTxsNecessary} transactions. Consider reducing minTxsNecessary or increasing maxBlocks.` @@ -384,7 +384,7 @@ async function getTipStatsSequential( // Handle insufficient transaction data if (allTips.length < minTxsNecessary) { - logger.error( + logger.warn( `Insufficient transaction data: found ${allTips.length} V3 transactions with tips in ${blocksAnalyzed} blocks ` + `(block range: ${Math.max(0, startingBlockNumber - maxBlocks + 1)}-${startingBlockNumber}). ` + `Required: ${minTxsNecessary} transactions. Consider reducing minTxsNecessary or increasing maxBlocks.`