From ac76ceb9853db6ab59c2dff1a6cb44eacbb9e70c Mon Sep 17 00:00:00 2001 From: lash Date: Sat, 5 Mar 2022 07:01:04 +0000 Subject: [PATCH] Correct nullstore package --- eth_monitor/runnable/sync.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eth_monitor/runnable/sync.py b/eth_monitor/runnable/sync.py index 6863d84..cbeb871 100644 --- a/eth_monitor/runnable/sync.py +++ b/eth_monitor/runnable/sync.py @@ -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)