Merge pull request #1842 from lbryio/release-0-23-1

Merge release back to master
This commit is contained in:
Sean Yesmunt 2018-08-01 11:51:58 -04:00 committed by GitHub
commit 735198d3d9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
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]);
}
});