aboutsummaryrefslogtreecommitdiff
path: root/lib/wallet/types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-10-20 01:37:00 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-10-20 01:37:00 +0200
commitde65019ed6db789a12ee4b654b1de5890daa2186 (patch)
tree9f8bee4bc6744b64a8f999d01a9c3932aa5ed776 /lib/wallet/types.ts
parent9ee0823b7e4a97a2b1812847eaabdf6cf846655e (diff)
downloadwallet-core-de65019ed6db789a12ee4b654b1de5890daa2186.tar.xz
make queries then-able
Diffstat (limited to 'lib/wallet/types.ts')
-rw-r--r--lib/wallet/types.ts9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/wallet/types.ts b/lib/wallet/types.ts
index 2df8094a7..3d21f8229 100644
--- a/lib/wallet/types.ts
+++ b/lib/wallet/types.ts
@@ -64,10 +64,15 @@ export interface ReserveRecord {
* be higher than the requested_amount
*/
requested_amount: AmountJson,
+
+
/**
- * Amount we've already withdrawn from the reserve.
+ * What's the current amount that sits
+ * in precoins?
*/
- withdrawn_amount: AmountJson;
+ precoin_amount: AmountJson;
+
+
confirmed: boolean,
}