sort listinvoices and listsendpays by order of creation.

This commit is contained in:
fiatjaf 2020-05-28 23:27:55 -03:00 committed by Christian Decker
parent ce9e559aed
commit 96452eafb7
2 changed files with 4 additions and 2 deletions

View File

@ -441,7 +441,8 @@ bool invoices_iterate(struct invoices *invoices,
", bolt11"
", description"
", features"
" FROM invoices;"));
" FROM invoices"
" ORDER BY id;"));
db_query_prepared(stmt);
it->p = stmt;
} else

View File

@ -2797,7 +2797,8 @@ wallet_payment_list(const tal_t *ctx,
", failonionreply"
", total_msat"
", partid"
" FROM payments;"));
" FROM payments"
" ORDER BY id;"));
}
db_query_prepared(stmt);