update for 0.38.7 account_balance api changes #183

Merged
neb-b merged 1 commit from sdk-balance-changes into master 2019-08-15 05:47:39 +02:00
2 changed files with 4 additions and 4 deletions

4
dist/bundle.es.js vendored
View file

@ -1750,8 +1750,8 @@ function doUpdateBalance() {
const { const {
wallet: { balance: balanceInStore } wallet: { balance: balanceInStore }
} = getState(); } = getState();
lbryProxy.account_balance().then(balanceAsString => { lbryProxy.account_balance().then(({ available }) => {
const balance = parseFloat(balanceAsString); const balance = parseFloat(available);
if (balanceInStore !== balance) { if (balanceInStore !== balance) {
dispatch({ dispatch({
type: UPDATE_BALANCE, type: UPDATE_BALANCE,

View file

@ -10,8 +10,8 @@ export function doUpdateBalance() {
const { const {
wallet: { balance: balanceInStore }, wallet: { balance: balanceInStore },
} = getState(); } = getState();
Lbry.account_balance().then(balanceAsString => { Lbry.account_balance().then(({ available }) => {
const balance = parseFloat(balanceAsString); const balance = parseFloat(available);
if (balanceInStore !== balance) { if (balanceInStore !== balance) {
dispatch({ dispatch({
type: ACTIONS.UPDATE_BALANCE, type: ACTIONS.UPDATE_BALANCE,