Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
don't access proof after dropping gil (#470)
In `validate_proof` the `proof` variable is accessed after dropping the GIL. This can result in crashes as python may have released that memory at any time after the GIL is dropped. Make sure to use a temp var to hold the proof size so we can avoid referencing this var
- Loading branch information