eth-monitor

Monitor and cache ethereum transactions with match filters
git clone git://git.defalsify.org/eth-monitor.git
Log | Files | Refs | README | LICENSE

commit ac76ceb9853db6ab59c2dff1a6cb44eacbb9e70c
parent 8016cc7c9f135dbe5b5189f1950e7a27f9f0344e
Author: lash <dev@holbrook.no>
Date:   Sat,  5 Mar 2022 07:01:04 +0000

Correct nullstore package

Diffstat:
Meth_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 @@ -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)