diff --git a/dist/bundle.es.js b/dist/bundle.es.js index 9708fd5..b698cd0 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -2701,7 +2701,7 @@ function doFetchTxoPage() { const state = getState(); const queryParams = selectTxoPageParams(state); - lbryProxy.txo_list(queryParams).then(res => { + lbryProxy.utxo_release().then(() => lbryProxy.txo_list(queryParams)).then(res => { dispatch({ type: FETCH_TXO_PAGE_COMPLETED, data: res diff --git a/src/redux/actions/wallet.js b/src/redux/actions/wallet.js index 7e300d0..5fd9baa 100644 --- a/src/redux/actions/wallet.js +++ b/src/redux/actions/wallet.js @@ -81,7 +81,8 @@ export function doFetchTxoPage() { const state = getState(); const queryParams = selectTxoPageParams(state); - Lbry.txo_list(queryParams) + Lbry.utxo_release() + .then(() => Lbry.txo_list(queryParams)) .then(res => { dispatch({ type: ACTIONS.FETCH_TXO_PAGE_COMPLETED,