aboutsummaryrefslogtreecommitdiff
path: root/src/talerTypes.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian.dold@gmail.com>2018-04-09 00:41:14 +0200
committerFlorian Dold <florian.dold@gmail.com>2018-04-09 00:41:14 +0200
commita75ef403acf80685c560aed09c544f0a272c666f (patch)
treebcfae61fe2c03beac71dbc6fc8b10b2f4f2b7393 /src/talerTypes.ts
parent6533716fac07e4988ef94231a0c0c8aba68e0d5e (diff)
downloadwallet-core-a75ef403acf80685c560aed09c544f0a272c666f.tar.xz
make linter happy
Diffstat (limited to 'src/talerTypes.ts')
-rw-r--r--src/talerTypes.ts7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/talerTypes.ts b/src/talerTypes.ts
index 15e0009fd..f8fb72b93 100644
--- a/src/talerTypes.ts
+++ b/src/talerTypes.ts
@@ -896,9 +896,16 @@ export function isWireDetail(x: any): x is WireDetail {
*/
@Checkable.Class({extra: true})
export class Proposal {
+ /**
+ * Contract terms for the propoal.
+ */
@Checkable.Value(() => ContractTerms)
contract_terms: ContractTerms;
+ /**
+ * Signature over contract, made by the merchant. The public key used for signing
+ * must be contract_terms.merchant_pub.
+ */
@Checkable.String()
sig: string;