aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
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;
}
/**