We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 565e1e6 commit a6c6702Copy full SHA for a6c6702
src/script/script.cpp
@@ -175,7 +175,8 @@ unsigned int CScript::GetSigOpCount(bool fAccurate) const
175
opcodetype opcode;
176
if (!GetOp(pc, opcode))
177
break;
178
- if (opcode == OP_CHECKSIG || opcode == OP_CHECKSIGVERIFY)
+ if (opcode == OP_CHECKSIG || opcode == OP_CHECKSIGVERIFY ||
179
+ opcode == OP_CHECKSIGFROMSTACK || opcode == OP_CHECKSIGFROMSTACKVERIFY)
180
n++;
181
else if (opcode == OP_CHECKMULTISIG || opcode == OP_CHECKMULTISIGVERIFY)
182
{
0 commit comments