Skip to content

Commit 4b5f325

Browse files
committed
fix call to validate_proof()
1 parent 1aea16f commit 4b5f325

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

chia/plotting/check_plots.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ def process_plot(plot_path: Path, plot_info: PlotInfo, num_start: int, num_end:
216216
else:
217217
log.info(f"\tFinding proof took: {proof_spent_time} ms. Filepath: {plot_path}")
218218

219-
ver_quality_str = v.validate_proof(pr.get_id(), pr.get_size(), challenge, proof)
219+
ver_quality_str = v.validate_proof(pr.get_id(), pr.get_size().size_v1, challenge, proof)
220220
if quality_str == ver_quality_str:
221221
total_proofs += 1
222222
else:

0 commit comments

Comments
 (0)