From 9917b1b24d019cc3c526adba7cdbefdfbea4e1ff Mon Sep 17 00:00:00 2001 From: nolash Date: Wed, 8 Sep 2021 08:54:12 +0200 Subject: [PATCH] Bump version, deps --- chaind/sql/session.py | 4 ++-- requirements.txt | 4 ++-- setup.cfg | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/chaind/sql/session.py b/chaind/sql/session.py index 42e67bc..d2ed0d7 100644 --- a/chaind/sql/session.py +++ b/chaind/sql/session.py @@ -1,5 +1,5 @@ # external imports -from chainqueue.sql.query import get_otx +from chainqueue.sql.query import get_tx class SessionIndex: @@ -9,7 +9,7 @@ class SessionIndex: def add(self, chain_spec, tx_hash, session=None): - tx = get_otx(chain_spec, tx_hash, session=session) + tx = get_tx(chain_spec, tx_hash, session=session) session.execute("INSERT INTO session (otx_id, session) VALUES ({},'{}')".format(tx['otx_id'], self.id)) session.flush() diff --git a/requirements.txt b/requirements.txt index debac48..a83b8f2 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ chainlib>=0.0.9a3,<=0.1.0 -chainqueue>=0.0.4a7,<=0.0.4 +chainqueue>=0.0.5a1,<=0.0.5 chainsyncer>=0.0.6a3,<=0.0.6 confini>=0.4.1a1,<0.5.0 -crypto-dev-signer>=0.4.15a1,<0.5.0 +crypto-dev-signer>=0.4.15a3,<0.5.0 pyxdg~=0.26 diff --git a/setup.cfg b/setup.cfg index 03d61cf..10f5a54 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = chaind -version = 0.0.3a3 +version = 0.0.3a5 description = Base package for chain queue servicek author = Louis Holbrook author_email = dev@holbrook.no