We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The RLP specification has one path for encoding 0-55 bytes and another path for encoding longer byte arrays.
This should be programmed as if length < 56 or if length <= 55. There are two places with length < 55
if length < 56
if length <= 55
length < 55
The text was updated successfully, but these errors were encountered:
personally I prefer <56 but to stay consistent with other places I'd go for <=55
<56
<=55
Sorry, something went wrong.
fix kopanitsa#9 off-by-one
c03b84d
No branches or pull requests
The RLP specification has one path for encoding 0-55 bytes and another path for encoding longer byte arrays.
This should be programmed as
if length < 56
orif length <= 55
. There are two places withlength < 55
The text was updated successfully, but these errors were encountered: