Rectify defaults in fs adapter instance

This commit is contained in:
lash 2022-03-14 21:43:08 +00:00
parent e01fa4c54a
commit 8e2cb86266
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 1 additions and 1 deletions

View File

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