aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-12-06 11:01:39 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-12-06 11:01:39 +0100
commit52da599ddbf5a72115544bc230cdefdb12811fd1 (patch)
treeabd90966659b0c60b8020643e2828bd913ad3db0 /src/walletTypes.ts
parente01f94e345bd94afe1643b55434a00c106d18954 (diff)
downloadwallet-core-52da599ddbf5a72115544bc230cdefdb12811fd1.tar.xz
don't die on auto-refund, fix pending operations
Diffstat (limited to 'src/walletTypes.ts')
-rw-r--r--src/walletTypes.ts8
1 files changed, 2 insertions, 6 deletions
diff --git a/src/walletTypes.ts b/src/walletTypes.ts
index 4c3458705..407871666 100644
--- a/src/walletTypes.ts
+++ b/src/walletTypes.ts
@@ -237,12 +237,6 @@ export interface HistoryEvent {
timestamp: Timestamp;
/**
- * Subject of the entry. Used to group multiple history records together.
- * Only the latest history record with the same subjectId will be shown.
- */
- subjectId?: string;
-
- /**
* Details used when rendering the history record.
*/
detail: any;
@@ -747,6 +741,8 @@ export interface PendingProposalDownloadOperation {
merchantBaseUrl: string;
proposalTimestamp: Timestamp;
proposalId: string;
+ lastError?: OperationError;
+ retryInfo: RetryInfo;
}
/**