From 34ed5ddc4c74938dec42b1bbf20ef78e98af2f7b Mon Sep 17 00:00:00 2001 From: Chris Troutner Date: Tue, 17 Nov 2020 14:27:42 -0800 Subject: [PATCH] fix(price): Fixing bug in new price endpoint --- src/routes/v3/price.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/routes/v3/price.js b/src/routes/v3/price.js index bf16183..3530493 100644 --- a/src/routes/v3/price.js +++ b/src/routes/v3/price.js @@ -133,7 +133,7 @@ class Price { // Request options const opt = { method: 'get', - baseURL: this.coinexPriceUrl, + baseURL: _this.coinexPriceUrl, timeout: 15000 }