summaryrefslogtreecommitdiff
path: root/src/types/pending.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2020-01-17 22:25:33 +0100
committerFlorian Dold <florian.dold@gmail.com>2020-01-17 22:25:33 +0100
commit9ad8c69782b69e2565bf6cdcb8cca555fced1292 (patch)
treecf5d377beb6b0df21d47c5b10e7aeb138a57f7d8 /src/types/pending.ts
parent4dfe451b8a69933fd8c849fd2186a552b2f64b2a (diff)
downloadwallet-core-9ad8c69782b69e2565bf6cdcb8cca555fced1292.tar.gz
wallet-core-9ad8c69782b69e2565bf6cdcb8cca555fced1292.tar.bz2
wallet-core-9ad8c69782b69e2565bf6cdcb8cca555fced1292.zip
fix amount format (how did this ever work before?)
Diffstat (limited to 'src/types/pending.ts')
-rw-r--r--src/types/pending.ts6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/types/pending.ts b/src/types/pending.ts
index f3979ac81..15299dec4 100644
--- a/src/types/pending.ts
+++ b/src/types/pending.ts
@@ -177,4 +177,10 @@ export interface PendingOperationInfoCommon {
export interface PendingOperationsResponse {
pendingOperations: PendingOperationInfo[];
nextRetryDelay: Duration;
+
+ /**
+ * Does this response only include pending operations that
+ * are due to be executed right now?
+ */
+ onlyDue: boolean;
}