mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-07-02 03:31:35 +02:00
Add rejection of non-null CHECKMULTISIG dummy values
This is a source of transaction mutability as the dummy value was previously not checked and could be modified to something other than the usual OP_0 value.
This commit is contained in:
@ -39,6 +39,7 @@ unsigned int ParseFlags(string strFlags){
|
||||
mapFlagNames["P2SH"] = SCRIPT_VERIFY_P2SH;
|
||||
mapFlagNames["STRICTENC"] = SCRIPT_VERIFY_STRICTENC;
|
||||
mapFlagNames["EVEN_S"] = SCRIPT_VERIFY_EVEN_S;
|
||||
mapFlagNames["NULLDUMMY"] = SCRIPT_VERIFY_NULLDUMMY;
|
||||
}
|
||||
|
||||
BOOST_FOREACH(string word, words)
|
||||
|
Reference in New Issue
Block a user