diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-06-27 16:08:16 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-06-27 16:08:16 +0200 |
commit | d663b3768b8b713571bbefaf0ea7d0a83775bb50 (patch) | |
tree | 4251058f71b7a8faa1b80bc83bc33ba04d254b10 | |
parent | 06d22e443eebe456912995b95958dc96df0a7280 (diff) |
add receiver field to contract
-rw-r--r-- | lib/wallet/types.ts | 3 |
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; } |