1
0
mirror of https://github.com/bitcoin/bips.git synced 2025-05-12 12:03:29 +00:00
This commit is contained in:
Orfeas Litos 2021-11-11 23:27:52 +01:00
parent 897e6458ce
commit 1839f43779
No known key found for this signature in database
GPG Key ID: 948100FDBA28707E

View File

@ -145,7 +145,7 @@ specification for the semantics of OP_CHECKTEMPLATEVERIFY.
// If the argument was not 32 bytes, treat as OP_NOP4:
switch (stack.back().size()) {
case 32:
if (!checker.CheckDefaultCheckTemplateVerifyHash(u256(stack.back()))) {
if (!checker.CheckDefaultCheckTemplateVerifyHash(uint256(stack.back()))) {
return set_error(serror, SCRIPT_ERR_TEMPLATE_MISMATCH);
}
break;