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
When sendrawtransaction is used with a transaction signature not in canonical form, the following error is returned:
sendrawtransaction
16: ConnectInputs failed: non-mandatory-script-verify-flag (No error)
(No error) should be the actual error message, but it looks like error message is being taken from the wrong CScriptCheck instance:
(No error)
multichain/src/core/main.cpp
Lines 2147 to 2150 in 4ddb443
check is the instance that succeeded, so it is always "No error". The error message from the check that failed should be used instead.
check
The text was updated successfully, but these errors were encountered:
Thanks, we'll take a look.
Sorry, something went wrong.
No branches or pull requests
When
sendrawtransaction
is used with a transaction signature not in canonical form, the following error is returned:(No error)
should be the actual error message, but it looks like error message is being taken from the wrong CScriptCheck instance:multichain/src/core/main.cpp
Lines 2147 to 2150 in 4ddb443
check
is the instance that succeeded, so it is always "No error". The error message from thecheck
that failed should be used instead.The text was updated successfully, but these errors were encountered: