commit d663b3768b8b713571bbefaf0ea7d0a83775bb50
parent 06d22e443eebe456912995b95958dc96df0a7280
Author: Florian Dold <florian.dold@gmail.com>
Date: Mon, 27 Jun 2016 16:08:16 +0200
add receiver field to contract
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git 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;
}