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 fRequireMinimal flag is set when VERIFY_MINIMALDATA is given: https://github.com/bitcoin/bitcoin/blob/master/src/script/interpreter.cpp#L259
fRequireMinimal
and it's supposed to "check that the number is encoded with the minimum possible number of bytes." https://github.com/bitcoin/bitcoin/blob/master/src/script/script.h#L204
For example ff80 shouldn't be allowed to be written as ff0080.
ff80
ff0080
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The
fRequireMinimal
flag is set when VERIFY_MINIMALDATA is given:https://github.com/bitcoin/bitcoin/blob/master/src/script/interpreter.cpp#L259
and it's supposed to "check that the number is encoded with the minimum possible number of bytes."
https://github.com/bitcoin/bitcoin/blob/master/src/script/script.h#L204
For example
ff80
shouldn't be allowed to be written asff0080
.The text was updated successfully, but these errors were encountered: