diff options
author | Marcello Stanisci <stanisci.m@gmail.com> | 2018-02-28 16:59:39 +0100 |
---|---|---|
committer | Marcello Stanisci <stanisci.m@gmail.com> | 2018-02-28 16:59:39 +0100 |
commit | a360d9c6a0538f8d4806745f74cb0eae75e91b69 (patch) | |
tree | fe92f8dec937eadb8a3cbf717365f0b13e5e4635 /src/exchange-lib/test_exchange_api.conf | |
parent | f1f53770035f432fffce44b44724f63ffbe7c58f (diff) |
Test cases connect to the exchange via the base URL
they get from exchange/BASE_URL config value. This way, the
twister can be easily put in the middle by making it
listen on the same port specified after the : of the
exchange/BASE_URL.
Diffstat (limited to 'src/exchange-lib/test_exchange_api.conf')
-rw-r--r-- | src/exchange-lib/test_exchange_api.conf | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/exchange-lib/test_exchange_api.conf b/src/exchange-lib/test_exchange_api.conf index 35267e340..7d8761f94 100644 --- a/src/exchange-lib/test_exchange_api.conf +++ b/src/exchange-lib/test_exchange_api.conf @@ -19,9 +19,9 @@ MASTER_PUBLIC_KEY = 98NJW3CQHZQGQXTY3K85K531XKPAPAVV4Q5V8PYYRR00NJGZWNVG # How to access our database DB = postgres -# Base URL of the exchange. Note that the test expects exactly this -# value in the wire transfers. -BASE_URL = "https://exchange.com/" +# Base URL of the exchange. Must be set to a URL where the +# exchange (or the twister) is actually listening. +BASE_URL = "http://localhost:8081/" [exchangedb-postgres] DB_CONN_STR = "postgres:///talercheck" |