We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c91881 commit 8e3f9dbCopy full SHA for 8e3f9db
chia/full_node/full_node_store.py
@@ -830,7 +830,8 @@ def new_peak(
830
if eos_op is not None:
831
self.recent_eos.put(eos_op.challenge_chain.get_hash(), (eos_op, time.time()))
832
833
- return FullNodeStorePeakResult(new_eos, new_sps, new_ips)
+ # Only forward the last 4 SPs that we have cached, as others will be too old
834
+ return FullNodeStorePeakResult(new_eos, sorted(new_sps)[-4:], new_ips)
835
836
def get_finished_sub_slots(
837
self,
0 commit comments