chainqueue

Blockchain transaction queue control
Log | Files | Refs | LICENSE

commit cbf00281c6e688bee74583fbb50dd6f4760715cc
parent 01ad409077c2166344d2d0b07861dbb28fcaaf60
Author: lash <dev@holbrook.no>
Date:   Thu,  5 May 2022 14:22:21 +0000

Remove sync for each get

Diffstat:
MCHANGELOG | 2++
Mchainqueue/store/base.py | 1-
Msetup.cfg | 2+-
3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,3 +1,5 @@ +- 0.1.13 + * Remove sync on each get - 0.1.12 * Raise correct exception from index store exists check - 0.1.11 diff --git a/chainqueue/store/base.py b/chainqueue/store/base.py @@ -83,7 +83,6 @@ class Store: s = self.index_store.get(k) err = None try: - self.state_store.sync() v = self.state_store.get(s) except FileNotFoundError as e: err = e diff --git a/setup.cfg b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainqueue -version = 0.1.12 +version = 0.1.13 description = Generic blockchain transaction queue control author = Louis Holbrook author_email = dev@holbrook.no