aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2019-11-02 00:22:55 +0100
committerFlorian Dold <florian.dold@gmail.com>2019-11-02 00:22:55 +0100
commit8f973c69c4b84f455634f03e931304a3babde0ee (patch)
treece8db191fa0853f87f3b118c175e2f89ff58483d /src/walletTypes.ts
parent8080c9a2859e0a612adb6dec1dad9b60e0fd4b1d (diff)
downloadwallet-core-8f973c69c4b84f455634f03e931304a3babde0ee.tar.xz
handle multiple refresh sessions correctly for refunded coins
Diffstat (limited to 'src/walletTypes.ts')
-rw-r--r--src/walletTypes.ts4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/walletTypes.ts b/src/walletTypes.ts
index d29e3812e..fddf05680 100644
--- a/src/walletTypes.ts
+++ b/src/walletTypes.ts
@@ -187,6 +187,10 @@ export interface WalletBalanceEntry {
* Amount that was paid back and we could withdraw again.
*/
paybackAmount: AmountJson;
+
+ pendingIncomingWithdraw: AmountJson;
+ pendingIncomingRefresh: AmountJson;
+ pendingIncomingDirty: AmountJson;
}
/**