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 = [];
|
||||
Object.keys(coinData).forEach(symbol => {
|
||||
if (coinData[symbol].status === SHAPESHIFT_STATUSES.UNAVAILABLE) {
|
||||
if (coinData[symbol].status === SHAPESHIFT_STATUSES.AVAILABLE) {
|
||||
supportedCoins.push(coinData[symbol]);
|
||||
}
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue