commit 6231113d8c531fe60ee6bbf01119a80493e66bce
parent e53367b04c2e698a35f12b7a2c72a535f841eb3d
Author: MS <ms@taler.net>
Date: Mon, 27 Jul 2020 11:04:16 +0200
apikey
Diffstat:
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/bin/taler-config-tips b/bin/taler-config-tips
@@ -2,15 +2,18 @@
set -eu
-MERCHANT_URL=$(taler-config -s frontends -o backend)
+MERCHANT_URL=http://localhost:9999/
+# MERCHANT_URL=$(taler-config -s frontends -o backend)
CURRENCY=$(taler-config -s taler -o currency)
EXCHANGE_URL=$(taler-config -s exchange -o base_url)
WIRE_METHOD="x-taler-bank"
+APIKEY=$(taler-config -s frontends -o apikey)
# Call merchant tool for reserve authorization.
taler-merchant-setup-reserve --amount="${CURRENCY}:50" \
--exchange-url=${EXCHANGE_URL} \
--merchant-url=${MERCHANT_URL} \
- --wire-method=${WIRE_METHOD}
+ --wire-method=${WIRE_METHOD} \
+ --apikey=${APIKEY}
# Call exchange tool for money transfer.