Skip to content

Commit 4b30c62

Browse files
authored
fix BinanceGroupCommon OnGetMarketSymbolsMetadataAsync (#673)
1 parent 9a2c515 commit 4b30c62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ExchangeSharp/API/Exchanges/BinanceGroup/BinanceGroupCommon.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ protected internal override async Task<IEnumerable<ExchangeMarket>> OnGetMarketS
158158
*/
159159

160160
var markets = new List<ExchangeMarket>();
161-
JToken obj = await MakeJsonRequestAsync<JToken>("/exchangeInfo");
161+
JToken obj = await MakeJsonRequestAsync<JToken>("/exchangeInfo", BaseUrlApi);
162162
JToken allSymbols = obj["symbols"];
163163
foreach (JToken marketSymbolToken in allSymbols)
164164
{

0 commit comments

Comments
 (0)