diff options
author | Christian Grothoff <christian@grothoff.org> | 2021-08-03 21:58:36 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2021-08-03 21:58:36 +0200 |
commit | ba3f70390a1e7210195c41e3afa3e7fe1511eb96 (patch) | |
tree | 8828877b90b208e0ccd85a9c013ef61829b3c33c /src/testing/test_exchange_api.conf | |
parent | 06676e72cb063c7abb264cbfd527f5c2d414dc7c (diff) |
restructure configuration, move bank account credentials from exchange-account-XXX to exchange-accountcredentials-XXX
Diffstat (limited to 'src/testing/test_exchange_api.conf')
-rw-r--r-- | src/testing/test_exchange_api.conf | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/testing/test_exchange_api.conf b/src/testing/test_exchange_api.conf index 8c883c49c..a1b743658 100644 --- a/src/testing/test_exchange_api.conf +++ b/src/testing/test_exchange_api.conf @@ -57,18 +57,22 @@ CONFIG = "postgres:///talercheck" [exchange-account-1] # What is the URL of our account? PAYTO_URI = "payto://x-taler-bank/localhost/42" -WIRE_GATEWAY_URL = "http://localhost:9081/42/" # ENABLE_CREDIT = YES +[exchange-accountcredentials-1] +WIRE_GATEWAY_URL = "http://localhost:9081/42/" + [exchange-account-2] # What is the bank account (with the "Taler Bank" demo system)? PAYTO_URI = "payto://x-taler-bank/localhost/2" +ENABLE_DEBIT = YES +ENABLE_CREDIT = YES + +[exchange-accountcredentials-2] WIRE_GATEWAY_AUTH_METHOD = basic USERNAME = Exchange PASSWORD = x WIRE_GATEWAY_URL = "http://localhost:9081/2/" -ENABLE_DEBIT = YES -ENABLE_CREDIT = YES [bank] HTTP_PORT = 9081 |