include proposal ID, to allow aborting

This commit is contained in:
Florian Dold 2020-09-09 02:22:22 +05:30
parent 67df550b4f
commit 7d9c98a90c
No known key found for this signature in database
GPG Key ID: D2E4F00F29D02A4B
2 changed files with 6 additions and 0 deletions

View File

@ -248,6 +248,7 @@ export async function getTransactions(
pr.abortStatus === AbortStatus.None,
timestamp: pr.timestampAccept,
transactionId: paymentTransactionId,
proposalId: pr.proposalId,
info: info,
...(err ? { error: err } : {}),
});

View File

@ -195,6 +195,11 @@ export interface TransactionPayment extends TransactionCommon {
*/
info: OrderShortInfo;
/**
* Wallet-internal end-to-end identifier for the payment.
*/
proposalId: string;
/**
* How far did the wallet get with processing the payment?
*/