aboutsummaryrefslogtreecommitdiff
path: root/packages/taler-util/src
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2024-06-11 15:39:34 +0200
committerFlorian Dold <florian@dold.me>2024-06-11 15:39:34 +0200
commit81b4a53a42c23e6f8e6b7e193a173b2c9cc35e83 (patch)
treeffdba74b4defb7021592fc4d7911af59af9bad44 /packages/taler-util/src
parent2a590ca82f3b63edcaeeba054961e6947df7a651 (diff)
downloadwallet-core-81b4a53a42c23e6f8e6b7e193a173b2c9cc35e83.tar.xz
wallet-core: fix bank integration API protocol range
Diffstat (limited to 'packages/taler-util/src')
-rw-r--r--packages/taler-util/src/http-client/bank-integration.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/packages/taler-util/src/http-client/bank-integration.ts b/packages/taler-util/src/http-client/bank-integration.ts
index e07b6c5fa..23740328b 100644
--- a/packages/taler-util/src/http-client/bank-integration.ts
+++ b/packages/taler-util/src/http-client/bank-integration.ts
@@ -50,7 +50,9 @@ export type TalerBankIntegrationErrorsByMethod<
* The API is used by the wallets.
*/
export class TalerBankIntegrationHttpClient {
- public readonly PROTOCOL_VERSION = "2:0:0";
+ public static readonly PROTOCOL_VERSION = "2:0:1";
+ public readonly PROTOCOL_VERSION =
+ TalerBankIntegrationHttpClient.PROTOCOL_VERSION;
httpLib: HttpRequestLibrary;