Reverse faulty obsolete exclusion in paused tx query

This commit is contained in:
lash 2022-04-16 14:49:24 +00:00
parent 8b70a509f7
commit 6d6a1a0d45
Signed by: lash
GPG Key ID: 21D2E7BB88C2A746
1 changed files with 2 additions and 2 deletions

View File

@ -185,10 +185,10 @@ def get_paused_tx_cache(chain_spec, status=None, sender=None, session=None, deco
q = q.filter(Otx.status>StatusEnum.PENDING.value)
q = q.filter(not_(Otx.status.op('&')(StatusBits.IN_NETWORK.value)==0))
q = q.filter(not_(Otx.status.op('&')(StatusBits.FINAL.value)==0))
if exclude_obsolete:
q = q.filter(not_(Otx.status.op('&')(StatusBits.OBSOLETE.value)==0))
if sender != None:
q = q.filter(TxCache.sender==sender)
if exclude_obsolete:
q = q.filter(Otx.status.op('&')(StatusBits.OBSOLETE.value)==0)
txs = {}
gas = 0