aboutsummaryrefslogtreecommitdiff
path: root/lib/wallet/types.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-04-06 02:06:57 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-04-06 02:06:57 +0200
commitd5fc7ee42de074be1c773dcdc5dd803f89d44489 (patch)
treec0167961ca2f9ca020a8bd122a1e6f85322dfcb0 /lib/wallet/types.ts
parent3877ace7ddd2df9a19b8ed0288ca0ed6f7411e0c (diff)
downloadwallet-core-d5fc7ee42de074be1c773dcdc5dd803f89d44489.tar.xz
Leave sending the payment blob to the merchant.
Diffstat (limited to 'lib/wallet/types.ts')
-rw-r--r--lib/wallet/types.ts5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/wallet/types.ts b/lib/wallet/types.ts
index feab1bcb1..8aa03d82b 100644
--- a/lib/wallet/types.ts
+++ b/lib/wallet/types.ts
@@ -103,8 +103,13 @@ export interface IExchangeInfo {
denoms: Denomination[];
}
+export interface WireInfo {
+ [type: string]: any;
+}
+
export interface ReserveCreationInfo {
exchangeInfo: IExchangeInfo;
+ wireInfo: WireInfo;
selectedDenoms: Denomination[];
withdrawFee: AmountJson;
overhead: AmountJson;