1391@@ -1392,7 +1392,7 @@ void InitScriptExecutionCache() {
1392 *
1393 * Non-static (and re-declared) in src/test/txvalidationcache_tests.cpp
1394 */
1395-bool CheckInputs(const CTransaction& tx, CValidationState &state, const CCoinsViewCache &inputs, bool fScriptChecks, unsigned int flags, bool cacheSigStore, bool cacheFullScriptStore, PrecomputedTransactionData& txdata, std::vector<CScriptCheck> *pvChecks)
1396+bool CheckInputs(const CTransaction& tx, CValidationState &state, const CCoinsViewCache &inputs, unsigned int flags, bool cacheSigStore, bool cacheFullScriptStore, PrecomputedTransactionData& txdata, std::vector<CScriptCheck> *pvChecks)
1397 {
1398 if (!tx.IsCoinBase())
1399 {
nit: since you re-indent the whole function body you might also remove this scope and put a if (tx.IsCoinBase()) return true;
in the first line.