aboutsummaryrefslogtreecommitdiff
path: root/lib/wallet/types.ts
diff options
context:
space:
mode:
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,
}