diff --git a/dist/bundle.es.js b/dist/bundle.es.js index b3be722..2af1339 100644 --- a/dist/bundle.es.js +++ b/dist/bundle.es.js @@ -2911,9 +2911,8 @@ function doBalanceSubscribe() { }; } -function doFetchTransactions(page = 1, pageSize = 99999) { +function doFetchTransactions(page = 1, pageSize = 999999) { return dispatch => { - dispatch(doFetchSupports()); dispatch({ type: FETCH_TRANSACTIONS_STARTED }); @@ -2995,23 +2994,6 @@ function doUpdateTxoPageParams(params) { }; } -function doFetchSupports(page = 1, pageSize = 99999) { - return dispatch => { - dispatch({ - type: FETCH_SUPPORTS_STARTED - }); - - lbryProxy.support_list({ page, page_size: pageSize }).then(result => { - dispatch({ - type: FETCH_SUPPORTS_COMPLETED, - data: { - supports: result.items - } - }); - }); - }; -} - function doFetchUtxoCounts() { return (() => { var _ref = _asyncToGenerator(function* (dispatch) { diff --git a/src/redux/actions/wallet.js b/src/redux/actions/wallet.js index 97254df..9c06ea9 100644 --- a/src/redux/actions/wallet.js +++ b/src/redux/actions/wallet.js @@ -61,9 +61,8 @@ export function doBalanceSubscribe() { }; } -export function doFetchTransactions(page = 1, pageSize = 99999) { +export function doFetchTransactions(page = 1, pageSize = 999999) { return dispatch => { - dispatch(doFetchSupports()); dispatch({ type: ACTIONS.FETCH_TRANSACTIONS_STARTED, });