Skip to content
Merged
Prev Previous commit
Next Next commit
debug info
  • Loading branch information
otselnik committed May 16, 2022
commit 1c826208c18ea8d0ea88b58038fbda11b033b39c
2 changes: 2 additions & 0 deletions proxy/indexer/indexer_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,7 @@ def process_functions(self):
self.gather_unknown_transactions()

def get_tx_receipts(self, stop_slot=None):
self.debug(f'get_tx_receipts')
signatures = self.gather_unknown_transactions()

poll_txs = []
Expand Down Expand Up @@ -129,6 +130,7 @@ def gather_unknown_transactions(self):
while continue_flag:
results = self._get_signatures(minimal_tx, self._maximum_tx, INDEXER_POLL_COUNT)
len_results = len(results)
self.debug(f'{len_results}')
if len_results == 0:
break

Expand Down