mirror of
https://github.com/Chia-Network/chia-blockchain.git
synced 2026-08-24 10:05:29 -05:00
fix(full_node): use f-string for log message when adding blocks (#19681)
Fix a typo I introduced in prior PR.
This commit is contained in:
@@ -1383,7 +1383,7 @@ class FullNode:
|
||||
block_rate_height = end_height
|
||||
|
||||
self.log.info(
|
||||
"Added blocks {start_height} to {end_height} "
|
||||
f"Added blocks {start_height} to {end_height} "
|
||||
f"({block_rate:.3g} blocks/s) (from: {peer.peer_info.ip})"
|
||||
)
|
||||
peak: Optional[BlockRecord] = self.blockchain.get_peak()
|
||||
|
||||
Reference in New Issue
Block a user