teos - feed_* -> btc_feed_*

This commit is contained in:
Sergi Delgado Segura
2020-06-09 09:24:00 +02:00
parent d91e9bb534
commit 10da7d2a10
7 changed files with 31 additions and 14 deletions

View File

@@ -6,9 +6,9 @@ btc_rpc_port = 18445
btc_network = regtest
# [zmq]
feed_protocol = tcp
feed_connect = 127.0.0.1
feed_port = 28335
btc_feed_protocol = tcp
btc_feed_connect = 127.0.0.1
btc_feed_port = 28335
[teos]
max_appointments = 100

View File

@@ -29,7 +29,7 @@ DEFAULT_CONF["BTC_RPC_PORT"]["value"] = 18443
DEFAULT_CONF["BTC_NETWORK"]["value"] = "regtest"
bitcoind_connect_params = {k: v["value"] for k, v in DEFAULT_CONF.items() if k.startswith("BTC")}
bitcoind_feed_params = {k: v["value"] for k, v in DEFAULT_CONF.items() if k.startswith("FEED")}
bitcoind_feed_params = {k: v["value"] for k, v in DEFAULT_CONF.items() if k.startswith("BTC_FEED")}
@pytest.fixture(scope="session")