diff options
author | MarcoFalke <falke.marco@gmail.com> | 2021-09-06 17:47:12 +0200 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2021-09-07 09:11:10 +0200 |
commit | fa57fa1a2e764792b873998ddf38db2ac061dcb6 (patch) | |
tree | cc2d827231315af144aded4d6376d3d28571fc57 /src/validation.cpp | |
parent | 92aad5303b9b96c46015156b5dc96b48e9e7bc76 (diff) |
Enable clang-tidy bugprone-argument-comment and fix violations
Diffstat (limited to 'src/validation.cpp')
-rw-r--r-- | src/validation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/validation.cpp b/src/validation.cpp index 753b824167..7e3663c465 100644 --- a/src/validation.cpp +++ b/src/validation.cpp @@ -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 { |