From 588b0fdef3a495484a82c465e3308c73aa679c42 Mon Sep 17 00:00:00 2001 From: wanziforever Date: Thu, 16 Oct 2025 19:48:11 +0800 Subject: [PATCH] fix typo for Timelord._check_for_new_sp comments, currently we get next 10 sp --- chia/timelord/timelord.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/chia/timelord/timelord.py b/chia/timelord/timelord.py index aa559a32f2c5..c1d9c0b45faa 100644 --- a/chia/timelord/timelord.py +++ b/chia/timelord/timelord.py @@ -511,7 +511,7 @@ async def _check_for_new_sp(self, iter_to_look_for: uint64) -> None: to_remove.append((signage_iter, signage_point_index)) self.proofs_finished = self._clear_proof_list(signage_iter) - # Send the next 3 signage point to the chains. + # Send the next 10 signage point to the chains. next_iters_count = 0 for next_sp, k in self.signage_point_iters: for chain in [Chain.CHALLENGE_CHAIN, Chain.REWARD_CHAIN]: