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
Currently, we patch the secp256k1 code immediately after downloading it (see source).
To avoid patching the secp256k1 code directly, we can create new C files for our modifications. This way, we can maintain our changes separately from the original library. Here's how to achieve this:
The content you are editing has changed. Please copy your edits and refresh the page.
Currently, we patch the secp256k1 code immediately after downloading it (see source).
To avoid patching the secp256k1 code directly, we can create new C files for our modifications. This way, we can maintain our changes separately from the original library. Here's how to achieve this:
Tasks
static
to make the code visible #52Case 1: Remove
static
to make the code visibleFor example, replace this code:
with this:
Alternative: Generate a new function from a list of signatures
Case 2: Replace a function
For example, the original function:
was replaced with:
Alternative: Write a new function
The text was updated successfully, but these errors were encountered: