@@ -198,7 +198,11 @@ CBlockIndex* BlockManager::FindForkInGlobalIndex(const CChain& chain, const CBlo
198198
199199std::unique_ptr<CBlockTreeDB> pblocktree;
200200
201- bool CheckInputScripts (const CTransaction& tx, TxValidationState& state, const CCoinsViewCache& inputs, unsigned int flags, bool cacheSigStore, bool cacheFullScriptStore, PrecomputedTransactionData& txdata, std::vector<CScriptCheck>* pvChecks = nullptr ) EXCLUSIVE_LOCKS_REQUIRED(cs_main);
201+ bool CheckInputScripts (const CTransaction& tx, TxValidationState& state,
202+ const CCoinsViewCache& inputs, unsigned int flags, bool cacheSigStore,
203+ bool cacheFullScriptStore, PrecomputedTransactionData& txdata,
204+ std::vector<CScriptCheck>* pvChecks = nullptr )
205+ EXCLUSIVE_LOCKS_REQUIRED(cs_main);
202206static FILE* OpenUndoFile (const FlatFilePos &pos, bool fReadOnly = false );
203207static FlatFileSeq BlockFileSeq ();
204208static FlatFileSeq UndoFileSeq ();
@@ -1450,7 +1454,10 @@ void InitScriptExecutionCache() {
14501454 *
14511455 * Non-static (and re-declared) in src/test/txvalidationcache_tests.cpp
14521456 */
1453- bool CheckInputScripts (const CTransaction& tx, TxValidationState& state, const CCoinsViewCache& inputs, unsigned int flags, bool cacheSigStore, bool cacheFullScriptStore, PrecomputedTransactionData& txdata, std::vector<CScriptCheck>* pvChecks)
1457+ bool CheckInputScripts (const CTransaction& tx, TxValidationState& state,
1458+ const CCoinsViewCache& inputs, unsigned int flags, bool cacheSigStore,
1459+ bool cacheFullScriptStore, PrecomputedTransactionData& txdata,
1460+ std::vector<CScriptCheck>* pvChecks)
14541461{
14551462 if (tx.IsCoinBase ()) return true ;
14561463
0 commit comments