diff options
author | Florian Dold <florian@dold.me> | 2024-01-10 22:47:41 +0100 |
---|---|---|
committer | Florian Dold <florian@dold.me> | 2024-01-10 22:47:41 +0100 |
commit | de9dea067d3aada18df8af5009c665905f931310 (patch) | |
tree | 91758f56669041aac8252f492d33e83138fc48f5 | |
parent | 1eab08e047bbd0ca8c4caa758e8651905e702e22 (diff) |
wallet-core: fix wrong request method (typo!)
-rw-r--r-- | packages/taler-wallet-core/src/operations/withdraw.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/taler-wallet-core/src/operations/withdraw.ts b/packages/taler-wallet-core/src/operations/withdraw.ts index 0817be472..d02cf0597 100644 --- 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) { |