doc: add release notes

This commit is contained in:
ismaelsadeeq 2024-11-01 15:53:24 -04:00
parent a4a2b61784
commit 02dd534672

View file

@ -0,0 +1,12 @@
- Logging and RPC
- Bitcoin Core now provide the specific reason and index of the first
non-standard input in a transaction, applicable to non-standard inputs
received via P2P and also changes the responses of transaction sending
RPC's (`submitpackage`, and `sendrawtransaction`) and `testmempoolaccept` RPC.
- `bad-txns-nonstandard-inputs` will message will now be:
- `bad-txns-input-script-unknown`: When the inputs `scriptPubKey` is non-standard or, if standard, has an incorrect witness program size.
- `bad-txns-input-p2sh-scriptsig-malformed`: When the inputs `scriptPubKey` is P2SH, but the `scriptSig` is invalid.
- `bad-txns-input-scriptcheck-missing`: When the inputs `scriptPubKey` is P2SH, but `scriptSig` is missing.
- `bad-txns-input-p2sh-redeemscript-sigops`: When the inputs `scriptPubKey` is P2SH, but `scriptSig` has too many signature operations that exceeds `MAX_P2SH_SIGOPS`.