aboutsummaryrefslogtreecommitdiff
path: root/lib/wallet/types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-17 15:58:36 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-17 15:58:36 +0200
commit8c0c4b5331d3cb467bb24c253fae3ca623ba5205 (patch)
tree755247f130c627a093e6e01894d103bceef18312 /lib/wallet/types.ts
parent6262af4ad73763e736bfb96a88c5d66e0ec51532 (diff)
downloadwallet-core-8c0c4b5331d3cb467bb24c253fae3ca623ba5205.tar.xz
automatic refresh
Diffstat (limited to 'lib/wallet/types.ts')
-rw-r--r--lib/wallet/types.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/wallet/types.ts b/lib/wallet/types.ts
index f1b1eedce..9d634618a 100644
--- a/lib/wallet/types.ts
+++ b/lib/wallet/types.ts
@@ -279,6 +279,19 @@ export interface Coin {
* to fix it.
*/
suspended?: boolean;
+
+ /**
+ * Was the coin revealed in a transaction?
+ */
+ dirty: boolean;
+
+ /**
+ * Is the coin currently involved in a transaction?
+ *
+ * This delays refreshing until the transaction is finished or
+ * aborted.
+ */
+ transactionPending: boolean;
}