teos - BLOCK_CACHE_SIZE -> LOCATOR_CACHE_SIZE

This commit is contained in:
Sergi Delgado Segura
2020-05-22 19:14:43 +02:00
parent c05f96b738
commit 77d1ea21c8
4 changed files with 6 additions and 6 deletions

View File

@@ -102,7 +102,7 @@ def test_update_states_empty_list(db_manager, gatekeeper, carrier, block_process
responder=Responder(db_manager, gatekeeper, carrier, block_processor),
sk_der=generate_keypair()[0].to_der(),
max_appointments=config.get("MAX_APPOINTMENTS"),
blocks_in_cache=config.get("BLOCK_CACHE_SIZE"),
blocks_in_cache=config.get("LOCATOR_CACHE_SIZE"),
)
missed_blocks_watcher = []
@@ -124,7 +124,7 @@ def test_update_states_responder_misses_more(run_bitcoind, db_manager, gatekeepe
responder=Responder(db_manager, gatekeeper, carrier, block_processor),
sk_der=generate_keypair()[0].to_der(),
max_appointments=config.get("MAX_APPOINTMENTS"),
blocks_in_cache=config.get("BLOCK_CACHE_SIZE"),
blocks_in_cache=config.get("LOCATOR_CACHE_SIZE"),
)
blocks = []
@@ -150,7 +150,7 @@ def test_update_states_watcher_misses_more(db_manager, gatekeeper, carrier, bloc
responder=Responder(db_manager, gatekeeper, carrier, block_processor),
sk_der=generate_keypair()[0].to_der(),
max_appointments=config.get("MAX_APPOINTMENTS"),
blocks_in_cache=config.get("BLOCK_CACHE_SIZE"),
blocks_in_cache=config.get("LOCATOR_CACHE_SIZE"),
)
blocks = []