summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorms <ms@taler.net>2021-12-01 17:32:42 +0100
committerms <ms@taler.net>2021-12-01 17:32:42 +0100
commit8850949aabb86f16aa154d47d163144ca599b71f (patch)
treeb67b26378dd3a54a4a344f5682e47356a78ba056
parent7491fea292f6108e1bdeb62d5d6c7e1cd0237da8 (diff)
downloaddeployment-8850949aabb86f16aa154d47d163144ca599b71f.tar.gz
deployment-8850949aabb86f16aa154d47d163144ca599b71f.tar.bz2
deployment-8850949aabb86f16aa154d47d163144ca599b71f.zip
taler-local
fix withdraw through X-Forwarded-Host
-rwxr-xr-xbin/WIP/taler-local2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/WIP/taler-local b/bin/WIP/taler-local
index 9dbd2db..b5fc243 100755
--- a/bin/WIP/taler-local
+++ b/bin/WIP/taler-local
@@ -1735,7 +1735,7 @@ def withdraw(bank_host, bank_proto):
# Let the user confirm the withdrawal operation and
# get the bank wire the funds.
print_nn("Confirm withdrawal operation at the bank...")
- resp = requests.post(REV_PROXY_URL +
+ resp = requests.post(bank_base_url +
f"/sandbox/demobanks/default/access-api/accounts/{CUSTOMER_BANK_ACCOUNT}/withdrawals/{withdrawal_id}/confirm",
auth = requests.auth.HTTPBasicAuth(CUSTOMER_BANK_ACCOUNT, CUSTOMER_BANK_PASSWORD)
)