Add script verification flag for SIGHASH_FORKID

This commit is contained in:
Jonathan "Duke" Leto 2017-12-30 21:45:29 -08:00
parent 35844a3e01
commit 402ff83645
1 changed files with 3 additions and 0 deletions

View File

@ -87,6 +87,9 @@ enum
//
// See BIP65 for details.
SCRIPT_VERIFY_CHECKLOCKTIMEVERIFY = (1U << 9),
// Do we accept signature using SIGHASH_FORKID
SCRIPT_ENABLE_SIGHASH_FORKID = (1U << 42),
};
uint256 SignatureHash(const CScript &scriptCode, const CTransaction& txTo, unsigned int nIn, int nHashType);