Browse Source

Fix compile warning/bug

pull/61/head
Duke Leto 4 years ago
parent
commit
3e92f28463
  1. 2
      src/txmempool.cpp

2
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()");

Loading…
Cancel
Save