aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-05-05 13:29:49 +0200
committerFlorian Dold <florian@dold.me>2023-05-05 13:29:49 +0200
commitcbf0f839542f7eda88cdc2a5c7b602e690309154 (patch)
tree5d5530f11947bd218577d7b9857e1a3752ddb2b5 /packages/taler-util/src
parent60805f3ff88d7ecd149a88ec7cea846384155c5b (diff)
downloadwallet-core-cbf0f839542f7eda88cdc2a5c7b602e690309154.tar.xz
wallet-core: remove allowed auditors from contract terms
Diffstat (limited to 'packages/taler-util/src')
-rw-r--r--packages/taler-util/src/taler-types.ts6
1 files changed, 0 insertions, 6 deletions
diff --git a/packages/taler-util/src/taler-types.ts b/packages/taler-util/src/taler-types.ts
index 295530529..56184a598 100644
--- a/packages/taler-util/src/taler-types.ts
+++ b/packages/taler-util/src/taler-types.ts
@@ -449,11 +449,6 @@ export interface MerchantContractTerms {
amount: string;
/**
- * Auditors accepted by the merchant.
- */
- auditors: AuditorHandle[];
-
- /**
* Deadline to pay for the contract.
*/
pay_deadline: TalerProtocolTimestamp;
@@ -1321,7 +1316,6 @@ export const codecForMerchantContractTerms = (): Codec<MerchantContractTerms> =>
.property("summary_i18n", codecOptional(codecForInternationalizedString()))
.property("nonce", codecForString())
.property("amount", codecForString())
- .property("auditors", codecForList(codecForAuditorHandle()))
.property("pay_deadline", codecForTimestamp)
.property("refund_deadline", codecForTimestamp)
.property("wire_transfer_deadline", codecForTimestamp)