aboutsummaryrefslogtreecommitdiff
path: root/src/dbTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-01-04 11:08:39 +0100
committerFlorian Dold <florian.dold@gmail.com>2018-01-04 11:08:39 +0100
commit02b4a2ad6208c3b70a4a194b4c763a4e4334cdc1 (patch)
treed139d88ce51c328cb55a9e8ad8f9371c3351568e /src/dbTypes.ts
parentfd2cd9c383b07cd681c18137396deae025d98047 (diff)
downloadwallet-core-02b4a2ad6208c3b70a4a194b4c763a4e4334cdc1.tar.xz
store sender wire info in separate store
Diffstat (limited to 'src/dbTypes.ts')
-rw-r--r--src/dbTypes.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/dbTypes.ts b/src/dbTypes.ts
index e0adb6fc4..264f81dd5 100644
--- a/src/dbTypes.ts
+++ b/src/dbTypes.ts
@@ -34,6 +34,7 @@ import {
PayReq,
RefundPermission,
TipResponse,
+ WireDetail,
} from "./talerTypes";
@@ -809,3 +810,19 @@ export interface PurchaseRecord {
*/
timestamp_refund: number;
}
+
+
+/**
+ * Information about wire information for bank accounts we withdrew coins from.
+ */
+export interface SenderWireRecord {
+ /**
+ * Wire details.
+ */
+ senderWire: WireDetail;
+
+ /**
+ * Identifier, hash code of canonicalized senderWire.
+ */
+ id: number;
+}