Merge release back to master #1842

Merged
neb-b merged 3 commits from release-0-23-1 into master 2018-08-01 17:51:59 +02:00
2 changed files with 2 additions and 2 deletions

View file

@ -1,6 +1,6 @@
{
"name": "LBRY",
"version": "0.23.0",
"version": "0.23.1",
"description": "A browser for the LBRY network, a digital marketplace controlled by its users.",
"keywords": [
"lbry"

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