chaind

Base package for chain queue serviceBase package for chain queue service
Log | Files | Refs | LICENSE

commit 8e2cb862667472d855d6460b0fdb020343b8baf5
parent e01fa4c54ab6f59b90e57634cd9d01f7a6e73caf
Author: lash <dev@holbrook.no>
Date:   Mon, 14 Mar 2022 21:43:08 +0000

Rectify defaults in fs adapter instance

Diffstat:
Mchaind/adapters/fs.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/chaind/adapters/fs.py b/chaind/adapters/fs.py @@ -24,7 +24,7 @@ class ChaindFsAdapter(ChaindAdapter): state_store = Status(factory) index_store = IndexStore(path, digest_bytes=digest_bytes) counter_store = CounterStore(path) - super(ChaindFsAdapter, self).__init__(chain_spec, state_store, index_store, counter_store, deserializer, dispatcher, cache=None, pending_retry_threshold=0, error_retry_threshold=0) + super(ChaindFsAdapter, self).__init__(chain_spec, state_store, index_store, counter_store, deserializer, dispatcher, cache=cache, pending_retry_threshold=pending_retry_threshold, error_retry_threshold=error_retry_threshold) def put(self, signed_tx):