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
{{ message }}
This repository was archived by the owner on Mar 5, 2025. It is now read-only.
This appears to be an eth-lib issue, but it bubbles up here, so should be tested and tracked.
This happens when the r or s component of a signature is 31 bytes or fewer. (assuming uniform distribution, around 1% of the time)
The signature encode/decode in eth-lib assumes that it is always 66 bytes long, and slices up the signature incorrectly, so it cannot recover the sender of the transaction.
I created a test to demonstrate this issue, but can't work on fixing it for a while. I'll attach a PR shortly.
The text was updated successfully, but these errors were encountered:
This appears to be an eth-lib issue, but it bubbles up here, so should be tested and tracked.
This happens when the
r
ors
component of a signature is 31 bytes or fewer. (assuming uniform distribution, around 1% of the time)The signature encode/decode in eth-lib assumes that it is always 66 bytes long, and slices up the signature incorrectly, so it cannot recover the sender of the transaction.
I created a test to demonstrate this issue, but can't work on fixing it for a while. I'll attach a PR shortly.
The text was updated successfully, but these errors were encountered: