Fixes logs and removes redundant tailing dots

This commit is contained in:
Sergi Delgado Segura
2019-12-16 19:45:30 +01:00
parent a9df67d787
commit 1184b4648a
7 changed files with 68 additions and 62 deletions

View File

@@ -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