You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A lot of functions in this repository don't take pointers in their arguments but somehow also don't take ownership of the argument (due to the usage of unsafe blocks). We should replace all these instances with pointers, so that it conforms to the regular Rust ownership rules and is clearer to use. Some examples: commit(), bullet_proof(), verify_bullet_proof()
The text was updated successfully, but these errors were encountered:
A lot of functions in this repository don't take pointers in their arguments but somehow also don't take ownership of the argument (due to the usage of
unsafe
blocks). We should replace all these instances with pointers, so that it conforms to the regular Rust ownership rules and is clearer to use. Some examples:commit()
,bullet_proof()
,verify_bullet_proof()
The text was updated successfully, but these errors were encountered: