Cast 8-vector of u32 to u256

This commit is contained in:
Orfeas Litos
2021-11-10 23:40:20 +01:00
parent 1cab3e87f3
commit 897e6458ce

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(stack.back())) {
if (!checker.CheckDefaultCheckTemplateVerifyHash(u256(stack.back()))) {
return set_error(serror, SCRIPT_ERR_TEMPLATE_MISMATCH);
}
break;