mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-17 14:14:22 +01:00
Fixes logs and removes redundant tailing dots
This commit is contained in:
@@ -30,7 +30,7 @@ class BlockProcessor:
|
||||
|
||||
except JSONRPCException as e:
|
||||
block = None
|
||||
logger.error("Couldn't get block from bitcoind.", error=e.error)
|
||||
logger.error("Couldn't get block from bitcoind", error=e.error)
|
||||
|
||||
return block
|
||||
|
||||
@@ -50,7 +50,7 @@ class BlockProcessor:
|
||||
|
||||
except JSONRPCException as e:
|
||||
block_hash = None
|
||||
logger.error("Couldn't get block hash.", error=e.error)
|
||||
logger.error("Couldn't get block hash", error=e.error)
|
||||
|
||||
return block_hash
|
||||
|
||||
@@ -94,7 +94,7 @@ class BlockProcessor:
|
||||
|
||||
except JSONRPCException as e:
|
||||
tx = None
|
||||
logger.error("Can't build transaction from decoded data.", error=e.error)
|
||||
logger.error("Can't build transaction from decoded data", error=e.error)
|
||||
|
||||
return tx
|
||||
|
||||
|
||||
Reference in New Issue
Block a user