From bb8d50026f868f3d0477f69eb4bf000b4097046d Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Mon, 30 Jul 2018 18:23:25 -0400 Subject: [PATCH] Fix ShapeShift status checking --- src/renderer/redux/actions/shape_shift.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/redux/actions/shape_shift.js b/src/renderer/redux/actions/shape_shift.js index d68b54f9c..c2aecefba 100644 --- a/src/renderer/redux/actions/shape_shift.js +++ b/src/renderer/redux/actions/shape_shift.js @@ -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]); } });