Skip to content
Merged
Prev Previous commit
Next Next commit
fix "until" transaction
  • Loading branch information
otselnik committed May 18, 2022
commit ed1d5c036b4240b0ef1c575fd50a6834c2d536cf
4 changes: 4 additions & 0 deletions proxy/indexer/indexer_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,10 @@ def gather_unknown_transactions(self):
sol_sign = tx["signature"]
slot = tx["slot"]

if sol_sign == self._maximum_tx:
continue_flag = False
break

if slot < self.last_slot:
continue_flag = False
break
Expand Down