@clonegod/ttd-core 2.1.28 → 2.1.29
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -139,7 +139,7 @@ function fetchPriceFromJupiter(addresses) {
|
|
|
139
139
|
}
|
|
140
140
|
catch (error) {
|
|
141
141
|
retryCount++;
|
|
142
|
-
(0, index_1.log_warn)(`[fetchPriceFromJupiter] Request failed (attempt ${retryCount}/${maxRetries}): ${error instanceof Error ? error.message : String(error)}`);
|
|
142
|
+
(0, index_1.log_warn)(`[fetchPriceFromJupiter] Request failed (attempt ${retryCount}/${maxRetries}): ${error instanceof Error ? error.message : String(error)}, url: ${url}`);
|
|
143
143
|
if (retryCount <= maxRetries) {
|
|
144
144
|
const currentRetrysleep = retrysleepMs * retryCount;
|
|
145
145
|
(0, index_1.log_debug)(`[fetchPriceFromJupiter] Retrying in ${currentRetrysleep}ms...`);
|