mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-30 08:51:24 +00:00
Fix ShapeShift status checking
This commit is contained in:
parent
0daf26f724
commit
bb8d50026f
1 changed files with 1 additions and 1 deletions
|
@ -74,7 +74,7 @@ export const shapeShiftInit = () => (dispatch: Dispatch): ThunkAction => {
|
||||||
|
|
||||||
let supportedCoins = [];
|
let supportedCoins = [];
|
||||||
Object.keys(coinData).forEach(symbol => {
|
Object.keys(coinData).forEach(symbol => {
|
||||||
if (coinData[symbol].status === SHAPESHIFT_STATUSES.UNAVAILABLE) {
|
if (coinData[symbol].status === SHAPESHIFT_STATUSES.AVAILABLE) {
|
||||||
supportedCoins.push(coinData[symbol]);
|
supportedCoins.push(coinData[symbol]);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Reference in a new issue