Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions chia/full_node/full_node_store.py
Original file line number Diff line number Diff line change
Expand Up @@ -891,6 +891,7 @@ def have_newer_signage_point(self, challenge_hash: bytes32, index: uint8, last_r
sp: Optional[SignagePoint] = sps[i]
if sp is not None and sp.rc_vdf is not None and sp.rc_vdf.challenge == last_rc_infusion:
found_rc_hash = True
break
sp = sps[index]
if (
found_rc_hash
Expand Down
Loading