Skip to content

Commit

Permalink
Remove unrelated changes
Browse files Browse the repository at this point in the history
  • Loading branch information
badrogger committed Dec 15, 2023
1 parent 666f8a0 commit 2fd4fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion transaction_manager/txpool.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ def to_list(self) -> List[bytes]:
def get(self, tx_id: Optional[bytes]) -> Optional[Tx]:
if tx_id is None:
return None
r = self.rs.get(tx_id) or b''
r = self.rs.get(tx_id)
logger.info('Received record %s', r)
tx = None
try:
Expand Down

0 comments on commit 2fd4fb9

Please sign in to comment.