taler-typescript-core

Wallet core logic and WebUIs for various components
Log | Files | Refs | Submodules | README | LICENSE

commit de9dea067d3aada18df8af5009c665905f931310
parent 1eab08e047bbd0ca8c4caa758e8651905e702e22
Author: Florian Dold <florian@dold.me>
Date:   Wed, 10 Jan 2024 22:47:41 +0100

wallet-core: fix wrong request method (typo!)

Diffstat:
Mpackages/taler-wallet-core/src/operations/withdraw.ts | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts @@ -1001,7 +1001,7 @@ async function processPlanchetExchangeBatchRequest( try { const resp = await ws.http.fetch(reqUrl, { - method: "PATCH", + method: "POST", body: batchReq, }); if (resp.status === HttpStatusCode.UnavailableForLegalReasons) {