WIP remove lower layer deps in ussd, correct create account api task graph

This commit is contained in:
nolash
2021-03-07 10:33:11 +01:00
parent 1c0732d983
commit 05479a6576
16 changed files with 23 additions and 47 deletions

View File

@@ -112,11 +112,11 @@ def register_eth(i, u):
r = json.loads(m['data'])
address = r['result']
break
except TypeError as e:
except Exception as e:
if m == None:
logg.critical('empty response from redis callback (did the service crash?)')
logg.critical('empty response from redis callback (did the service crash?) {}'.format(e))
else:
logg.critical('unexpected response from redis callback: {}'.format(m))
logg.critical('unexpected response from redis callback: {} {}'.format(m, e))
sys.exit(1)
logg.debug('[{}] register eth {} {}'.format(i, u, address))