diff --git a/dist/bundle.js b/dist/bundle.js index 9be7a66..415a22c 100644 --- a/dist/bundle.js +++ b/dist/bundle.js @@ -4137,7 +4137,9 @@ function doFetchTransactions() { type: ACTIONS.FETCH_TRANSACTIONS_STARTED }); - _lbry2.default.transaction_list().then(function (results) { + _lbry2.default.utxo_release().then(function () { + return _lbry2.default.transaction_list(); + }).then(function (results) { dispatch({ type: ACTIONS.FETCH_TRANSACTIONS_COMPLETED, data: { diff --git a/src/redux/actions/wallet.js b/src/redux/actions/wallet.js index 900c2eb..e3fcb08 100644 --- a/src/redux/actions/wallet.js +++ b/src/redux/actions/wallet.js @@ -37,14 +37,16 @@ export function doFetchTransactions() { type: ACTIONS.FETCH_TRANSACTIONS_STARTED, }); - Lbry.transaction_list().then((results) => { - dispatch({ - type: ACTIONS.FETCH_TRANSACTIONS_COMPLETED, - data: { - transactions: results, - }, + Lbry.utxo_release() + .then(() => Lbry.transaction_list()) + .then((results) => { + dispatch({ + type: ACTIONS.FETCH_TRANSACTIONS_COMPLETED, + data: { + transactions: results, + }, + }); }); - }); }; }