From 3e92f28463f4c38821f65af0d5c12e7d7e9a8893 Mon Sep 17 00:00:00 2001 From: Duke Leto Date: Mon, 30 Dec 2019 12:04:51 -0500 Subject: [PATCH] Fix compile warning/bug --- src/txmempool.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/txmempool.cpp b/src/txmempool.cpp index dc44d46b1..91fa0e3c6 100644 --- a/src/txmempool.cpp +++ b/src/txmempool.cpp @@ -865,7 +865,7 @@ void CTxMemPool::NotifyRecentlyAdded() try { SyncWithWallets(tx, NULL); } catch (const boost::thread_interrupted&) { - fprintf(stderr,"%s: thread interrupted\n"); + fprintf(stderr,"%s: thread interrupted\n", __FUNCTION__); throw; } catch (const std::exception& e) { PrintExceptionContinue(&e, "CTxMemPool::NotifyRecentlyAdded()");