-
Notifications
You must be signed in to change notification settings - Fork 414
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Re-add ability to export transactions #5899
Conversation
6932dc5
to
04d07e7
Compare
Took about a minute on my wallet, will try some other large ones. Not bad... I noticed support_list is called - is that data used anywhere? we shouldn't need anything outside of transaction list. 99K may be too small for some of the larger creators, so let's add another 9. We'll deal with performance issues/run manually for others as needed. |
Wanted to ask that as well. @seanyesmunt, safe to remove export function doFetchTransactions(page = 1, pageSize = 99999) {
return dispatch => {
dispatch(doFetchSupports()); // <---- ??
dispatch({
type: ACTIONS.FETCH_TRANSACTIONS_STARTED,
});
Lbry.transaction_list({ page, page_size: pageSize }).then(result => {
dispatch({
type: ACTIONS.FETCH_TRANSACTIONS_COMPLETED,
data: {
transactions: result.items,
},
});
});
};
} |
|
ac82e46
to
ef63e0c
Compare
|
Closes 4793: Export Wallet History For Taxation Purposes
Don't let the file-creation process block the GUI. Requires lbry-redux update.
ef63e0c
to
705f5eb
Compare
|
Issue
Closes #4793 Export Wallet History For Taxation Purposes
Requires lbry-redux update
Screenshots