2 Commits

Author SHA1 Message Date
lash
2fc3d4da0c Single adapter instantiation 2022-05-05 15:08:51 +00:00
lash
5fc27671da Upgrade chaind 2022-05-05 08:10:38 +00:00
3 changed files with 17 additions and 14 deletions

View File

@@ -83,7 +83,18 @@ signal.signal(signal.SIGTERM, ctrl.shutdown)
logg.info('session id is ' + settings.get('SESSION_ID'))
logg.info('session socket path is ' + settings.get('SESSION_SOCKET_PATH'))
def main():
global dispatcher, settings
queue_adapter = ChaindFsAdapter(
settings.get('CHAIN_SPEC'),
settings.dir_for('queue'),
EthCacheTx,
dispatcher,
store_sync=False,
)
while True:
v = None
client_socket = None
@@ -100,16 +111,9 @@ def main():
if v == None:
ctrl.process(conn)
#queue_adapter = create_adapter(settings, dispatcher)
continue
queue_adapter = ChaindFsAdapter(
settings.get('CHAIN_SPEC'),
settings.dir_for('queue'),
EthCacheTx,
dispatcher,
store_sync=False,
)
result_data = None
r = 0 # no error
try:

View File

@@ -1,6 +1,5 @@
chaind~=0.2.4
hexathon~=0.1.5
chainlib-eth~=0.1.1
chaind~=0.2.10
hexathon~=0.1.6
chainlib-eth~=0.1.2
pyxdg~=0.27
shep~=0.2.5
funga-eth~=0.6.0
funga-eth~=0.6.1

View File

@@ -1,6 +1,6 @@
[metadata]
name = chaind-eth
version = 0.2.3
version = 0.2.9
description = Queue server for ethereum
author = Louis Holbrook
author_email = dev@holbrook.no