| 1378 | } |
| 1379 | |
| 1380 | bool CScriptCheck::operator()() { |
| 1381 | const CScript &scriptSig = ptxTo->vin[nIn].scriptSig; |
| 1382 | const CScriptWitness *witness = &ptxTo->vin[nIn].scriptWitness; |
| 1383 | return VerifyScript(scriptSig, m_tx_out.scriptPubKey, witness, nFlags, CachingTransactionSignatureChecker(ptxTo, nIn, m_tx_out.nValue, cacheStore, *txdata), &error); |
| 1384 | } |
| 1385 | |
| 1386 | int GetSpendHeight(const CCoinsViewCache& inputs) |
| 1387 | { |
nothing calls this directly
no test coverage detected