From 396e7058f5b29bb7b6857bd22a7a09cf09726c00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20S=C3=A1?= Date: Tue, 19 Apr 2022 14:20:09 +0100 Subject: [PATCH] refactor: disable CCXT's rate limitting --- lib/plugins/ticker/ccxt.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/plugins/ticker/ccxt.js b/lib/plugins/ticker/ccxt.js index 154d7eb4..410b24fa 100644 --- a/lib/plugins/ticker/ccxt.js +++ b/lib/plugins/ticker/ccxt.js @@ -13,8 +13,7 @@ function ticker (fiatCode, cryptoCode, tickerName) { tickerObjects[tickerName] : tickerObjects[tickerName] = new ccxt[tickerName]({ timeout: 3000, - enableRateLimit: true, - rateLimit: 333, + enableRateLimit: false, }) if (verifyFiatSupport(fiatCode, tickerName)) {