Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
fix(wallet): fetch upto 2500 invoices
Browse files Browse the repository at this point in the history
  • Loading branch information
mrfelton committed Jun 13, 2019
1 parent 0316ef6 commit d67b9c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion renderer/reducers/invoice.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ export function sendInvoice() {
export const fetchInvoices = () => async dispatch => {
dispatch(getInvoices())
const grpc = await grpcService
const invoices = await grpc.services.Lightning.listInvoices()
const invoices = await grpc.services.Lightning.listInvoices({ num_max_invoices: 2500 })
dispatch(receiveInvoices(invoices))
}

Expand Down

0 comments on commit d67b9c1

Please sign in to comment.