From a37c5d6314f3b1a0a97892c562bc623f187d6d64 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 31 Oct 2012 16:01:59 -0700 Subject: [PATCH] Sweep the temp node cache. --- src/Application.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Application.cpp b/src/Application.cpp index 8ec0b2bf3..758fae4ae 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -190,6 +190,7 @@ void Application::sweep() mMasterTransaction.sweep(); mHashedObjectStore.sweep(); mMasterLedger.sweep(); + mTempNodeCache.sweep(); mSweepTimer.expires_from_now(boost::posix_time::seconds(60)); mSweepTimer.async_wait(boost::bind(&Application::sweep, this)); }