chainqueue

Blockchain transaction queue control
Log | Files | Refs | LICENSE

commit 1b24fd543995a446d0ee3c20bb1bab3b60319920
parent b7a84acdb4270f28f4a7483137932d7d18c71343
Author: lash <dev@holbrook.no>
Date:   Sun,  6 Nov 2022 15:17:39 +0000

Implement shep 0.3.x, chainlib 0.4.x

Diffstat:
MCHANGELOG | 3+++
Mchainqueue/state.py | 2+-
Mrequirements.txt | 4++--
Msetup.cfg | 2+-
4 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/CHANGELOG b/CHANGELOG @@ -1,3 +1,6 @@ +- 0.2.1 + * Implement shep 0.3.0 + * Implement chainlib 0.4.x - 0.2.0 * Implement chainlib 0.3.0 - 0.1.16 diff --git a/chainqueue/state.py b/chainqueue/state.py @@ -9,7 +9,7 @@ logg = logging.getLogger(__name__) class Verify: - def verify(self, state_store, from_state, to_state): + def verify(self, state_store, key, from_state, to_state): to_state_name = state_store.name(to_state) m = None try: diff --git a/requirements.txt b/requirements.txt @@ -1,5 +1,5 @@ hexathon~=0.1.7 leveldir~=0.3.0 confini~=0.6.1 -chainlib~=0.3.0 -shep~=0.2.9 +chainlib~=0.4.0 +shep~=0.3.0 diff --git a/setup.cfg b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chainqueue -version = 0.2.0 +version = 0.2.1 description = Generic blockchain transaction queue control author = Louis Holbrook author_email = dev@holbrook.no