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:
Richard Kiss
2025-06-05 15:06:44 -07:00
committed by GitHub
parent 082f0592d8
commit 3a0efbd463
+1 -1
View File
@@ -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()