summaryrefslogtreecommitdiff
path: root/packages/taler-util/src/MerchantApiClient.ts
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2023-09-06 12:32:31 +0200
committerFlorian Dold <florian@dold.me>2023-09-06 12:32:31 +0200
commit7450bede5b5809f6a496b7e68852a454386850e5 (patch)
treece4aedaad43ad095e643d96f5897883b70616c03 /packages/taler-util/src/MerchantApiClient.ts
parent07d71eb29704a148f7e7bb0c064cbbad056d5a50 (diff)
downloadwallet-core-7450bede5b5809f6a496b7e68852a454386850e5.tar.gz
wallet-core-7450bede5b5809f6a496b7e68852a454386850e5.tar.bz2
wallet-core-7450bede5b5809f6a496b7e68852a454386850e5.zip
get rid of deprecated bank API client, change allowHttp to requireTls
Diffstat (limited to 'packages/taler-util/src/MerchantApiClient.ts')
-rw-r--r--packages/taler-util/src/MerchantApiClient.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/packages/taler-util/src/MerchantApiClient.ts b/packages/taler-util/src/MerchantApiClient.ts
index cf4788d9e..cbdcb9fdf 100644
--- a/packages/taler-util/src/MerchantApiClient.ts
+++ b/packages/taler-util/src/MerchantApiClient.ts
@@ -138,10 +138,7 @@ export class MerchantApiClient {
};
}
- httpClient = createPlatformHttpLib({
- allowHttp: true,
- enableThrottling: false,
- });
+ httpClient = createPlatformHttpLib();
async changeAuth(auth: MerchantAuthConfiguration): Promise<void> {
const url = new URL("private/auth", this.baseUrl);