Fix bugprone-lambda-function-name errors

Can be reviewed with

--color-moved=dimmed-zebra
This commit is contained in:
MarcoFalke
2023-10-26 16:28:50 +02:00
parent 2a349f9ea5
commit faa769db5a
4 changed files with 25 additions and 19 deletions

View File

@@ -465,7 +465,7 @@ static RPCHelpMan getmempoolancestors()
throw JSONRPCError(RPC_INVALID_ADDRESS_OR_KEY, "Transaction not in mempool");
}
auto ancestors{mempool.AssumeCalculateMemPoolAncestors(__func__, *it, CTxMemPool::Limits::NoLimits(), /*fSearchForParents=*/false)};
auto ancestors{mempool.AssumeCalculateMemPoolAncestors(self.m_name, *it, CTxMemPool::Limits::NoLimits(), /*fSearchForParents=*/false)};
if (!fVerbose) {
UniValue o(UniValue::VARR);