From baf2841873b50b8aa54f559b360c20e48c98f3ce Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 14 May 2013 09:30:00 -0700 Subject: [PATCH] Bugfix. --- src/cpp/ripple/RPCHandler.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/RPCHandler.cpp b/src/cpp/ripple/RPCHandler.cpp index 01809a7dd1..92b066f8f6 100644 --- a/src/cpp/ripple/RPCHandler.cpp +++ b/src/cpp/ripple/RPCHandler.cpp @@ -1870,7 +1870,7 @@ Json::Value RPCHandler::doLedger(Json::Value jvRequest, int& cost, ScopedLock& M if ((bFull || bAccounts) && !lpLedger->isImmutable()) { // For full or accounts, it's cheaper to snapshot - lpLedger = boost::make_shared(*lpLedger, true); + lpLedger = boost::make_shared(*lpLedger, false); assert(lpLedger->isImmutable()); }