4
0
mirror of git://holbrook.no/eth-monitor.git synced 2026-05-26 11:56:18 +02:00

Correct nullstore package

This commit is contained in:
lash
2022-03-05 07:01:04 +00:00
parent 8016cc7c9f
commit ac76ceb985

View File

@@ -218,7 +218,7 @@ def setup_filter(chain_spec, cache_dir, include_tx_data, include_block_data):
store = None
if cache_dir == None:
logg.warning('no cache dir specified, will discard everything!!')
from eth_monitor.store.null import NullStore
from eth_cache.store.null import NullStore
store = NullStore()
else:
store = FileStore(chain_spec, cache_dir)