From 78407b99ed6dd17f687fcbfb0486ecc433302287 Mon Sep 17 00:00:00 2001 From: dergoegge Date: Thu, 21 Mar 2024 11:35:11 +0000 Subject: [clang-tidy] Enable the misc-no-recursion check Co-authored-by: stickies-v Co-authored-by: Gloria Zhao --- src/wallet/receive.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'src/wallet/receive.cpp') diff --git a/src/wallet/receive.cpp b/src/wallet/receive.cpp index ea3ffff549..c164266f80 100644 --- a/src/wallet/receive.cpp +++ b/src/wallet/receive.cpp @@ -253,6 +253,7 @@ bool CachedTxIsFromMe(const CWallet& wallet, const CWalletTx& wtx, const isminef return (CachedTxGetDebit(wallet, wtx, filter) > 0); } +// NOLINTNEXTLINE(misc-no-recursion) bool CachedTxIsTrusted(const CWallet& wallet, const CWalletTx& wtx, std::set& trusted_parents) { AssertLockHeld(wallet.cs_wallet); -- cgit v1.2.3