aboutsummaryrefslogtreecommitdiff
path: root/src/walletTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-01-17 05:33:06 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-01-17 05:33:06 +0100
commitd4c2f6f6f992c36609c4a029afcb378a7f839ddf (patch)
tree2c50f9f1fa65ccea77894460b9d2080184914ab2 /src/walletTypes.ts
parentc62ba4986fbfcb8637a3befadf3d3eddbd5348ca (diff)
downloadwallet-core-d4c2f6f6f992c36609c4a029afcb378a7f839ddf.tar.xz
use full amount with wire fees when creating deposit permission
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 d1a4f8746..45a795873 100644
--- a/src/walletTypes.ts
+++ b/src/walletTypes.ts
@@ -415,6 +415,10 @@ export interface CoinSelectionResult {
exchangeUrl: string;
cds: CoinWithDenom[];
totalFees: AmountJson;
+ /**
+ * Total amount, including wire fees payed by the customer.
+ */
+ totalAmount: AmountJson;
}