Skip to content

Commit 11dc44e

Browse files
committed
bancor fix
1 parent 650e6e6 commit 11dc44e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/services/ExchangeService.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -356,7 +356,7 @@ class Bancor {
356356
clearTimeout(bancorTimeout);
357357
const tokens = await this.get(`currencies/tokens?limit=50&skip=0&fromCurrencyCode=USD&includeTotal=true&orderBy=volume24h&sortOrder=desc&blockchainType=eos`, bancorEosApi).catch(() => null);
358358
if(!tokens) return;
359-
this.prices = tokens.currencies.page.reduce((acc,x) => {
359+
this.prices = tokens.page.reduce((acc,x) => {
360360
acc[x.code] = x.price;
361361
return acc;
362362
}, {});

0 commit comments

Comments
 (0)