aboutsummaryrefslogtreecommitdiff
path: root/lib/wallet
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2016-06-27 16:08:16 +0200
committerFlorian Dold <florian.dold@gmail.com>2016-06-27 16:08:16 +0200
commitd663b3768b8b713571bbefaf0ea7d0a83775bb50 (patch)
tree4251058f71b7a8faa1b80bc83bc33ba04d254b10 /lib/wallet
parent06d22e443eebe456912995b95958dc96df0a7280 (diff)
downloadwallet-core-d663b3768b8b713571bbefaf0ea7d0a83775bb50.tar.xz
add receiver field to contract
Diffstat (limited to 'lib/wallet')
-rw-r--r--lib/wallet/types.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/wallet/types.ts b/lib/wallet/types.ts
index 8cecc1e8e..c20884cff 100644
--- a/lib/wallet/types.ts
+++ b/lib/wallet/types.ts
@@ -268,6 +268,9 @@ export class Contract {
@Checkable.Optional(Checkable.String)
repurchase_correlation_id: string;
+ @Checkable.Optional(Checkable.String)
+ receiver: string;
+
static checked: (obj: any) => Contract;
}