mirror of
https://github.com/aljazceru/python-teos.git
synced 2025-12-18 06:34:19 +01:00
warn ==> warning
This commit is contained in:
@@ -29,5 +29,5 @@ class Logger(object):
|
|||||||
def error(self, msg, **kwargs):
|
def error(self, msg, **kwargs):
|
||||||
logging.error(StructuredMessage(self._add_prefix(msg), actor=self.actor, **kwargs))
|
logging.error(StructuredMessage(self._add_prefix(msg), actor=self.actor, **kwargs))
|
||||||
|
|
||||||
def warn(self, msg, **kwargs):
|
def warning(self, msg, **kwargs):
|
||||||
logging.warn(StructuredMessage(self._add_prefix(msg), actor=self.actor, **kwargs))
|
logging.warning(StructuredMessage(self._add_prefix(msg), actor=self.actor, **kwargs))
|
||||||
|
|||||||
@@ -126,7 +126,7 @@ class Responder:
|
|||||||
self.rebroadcast(txs_to_rebroadcast)
|
self.rebroadcast(txs_to_rebroadcast)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
logger.warn("Reorg found",
|
logger.warning("Reorg found",
|
||||||
local_prev_block_hash=prev_block_hash,
|
local_prev_block_hash=prev_block_hash,
|
||||||
remote_prev_block_hash=block.get('previousblockhash'))
|
remote_prev_block_hash=block.get('previousblockhash'))
|
||||||
|
|
||||||
@@ -174,7 +174,7 @@ class Responder:
|
|||||||
self.add_response(uuid, self.jobs[uuid].dispute_txid, self.jobs[uuid].justice_txid,
|
self.add_response(uuid, self.jobs[uuid].dispute_txid, self.jobs[uuid].justice_txid,
|
||||||
self.jobs[uuid].justice_rawtx, self.jobs[uuid].appointment_end, retry=True)
|
self.jobs[uuid].justice_rawtx, self.jobs[uuid].appointment_end, retry=True)
|
||||||
|
|
||||||
logger.warn("Transaction has missed many confirmations. Rebroadcasting.",
|
logger.warning("Transaction has missed many confirmations. Rebroadcasting.",
|
||||||
justice_txid=self.jobs[uuid].justice_txid,
|
justice_txid=self.jobs[uuid].justice_txid,
|
||||||
confirmations_missed=CONFIRMATIONS_BEFORE_RETRY)
|
confirmations_missed=CONFIRMATIONS_BEFORE_RETRY)
|
||||||
|
|
||||||
@@ -210,5 +210,5 @@ class Responder:
|
|||||||
# ToDo: #24-properly-handle-reorgs
|
# ToDo: #24-properly-handle-reorgs
|
||||||
# FIXME: if the dispute is not on chain (either in mempool or not there at all), we need to call the
|
# FIXME: if the dispute is not on chain (either in mempool or not there at all), we need to call the
|
||||||
# reorg manager
|
# reorg manager
|
||||||
logger.warn("Dispute and justice transaction missing. Calling the reorg manager")
|
logger.warning("Dispute and justice transaction missing. Calling the reorg manager")
|
||||||
logger.error("Reorg manager not yet implemented")
|
logger.error("Reorg manager not yet implemented")
|
||||||
|
|||||||
Reference in New Issue
Block a user