Merge pull request #49 from zanethomas/change-sighash-forkid

SIGHASH_FORKID defined as an int but used in the code as a bit-field constant
This commit is contained in:
BlueSilver22 2018-01-25 17:15:02 -05:00 committed by GitHub
commit cef3f89e75
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ enum
SIGHASH_ALL = 1,
SIGHASH_NONE = 2,
SIGHASH_SINGLE = 3,
SIGHASH_FORKID = 0x42,
SIGHASH_FORKID = 0x40,
SIGHASH_ANYONECANPAY = 0x80,
};