Enable clang-tidy bugprone-argument-comment and fix violations

This commit is contained in:
MarcoFalke 2021-09-06 17:47:12 +02:00
parent 92aad5303b
commit fa57fa1a2e
No known key found for this signature in database
GPG key ID: CE2B75697E69A548
9 changed files with 14 additions and 12 deletions

View file

@ -415,7 +415,7 @@ static bool CheckInputsFromMempoolAndCache(const CTransaction& tx, TxValidationS
}
// Call CheckInputScripts() to cache signature and script validity against current tip consensus rules.
return CheckInputScripts(tx, state, view, flags, /* cacheSigStore = */ true, /* cacheFullSciptStore = */ true, txdata);
return CheckInputScripts(tx, state, view, flags, /* cacheSigStore= */ true, /* cacheFullScriptStore= */ true, txdata);
}
namespace {