Fix ShapeShift status checking

This commit is contained in:
Thomas Zarebczan 2018-07-30 18:23:25 -04:00
parent 0daf26f724
commit bb8d50026f

View file

@ -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]);
}
});