Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
#384 fix Indexer logging error (#385)
  • Loading branch information
otselnik authored Dec 22, 2021
commit 05cad741a2ad00e5287ccffe50815f9adea61d89
4 changes: 2 additions & 2 deletions proxy/indexer/indexer.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def process_receipts(self):
del continue_table[storage_account]
else:
logger.error("Storage not found")
logger.error(eth_signature, "unknown")
logger.error(f"{eth_signature} unknown")
# raise

del holder_table[write_account]
Expand Down Expand Up @@ -446,7 +446,7 @@ def submit_transaction(self, trx_struct):
}
self.blocks_by_hash[block_hash] = slot

logger.debug(trx_struct.eth_signature + " " + status)
logger.debug(f"{trx_struct.eth_signature} {status}")


def submit_transaction_part(self, trx_struct):
Expand Down