From 31e70c0cd2ef118015089a77e20428129ec09cd9 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Sun, 3 Jun 2012 19:42:30 -0700 Subject: [PATCH] Use new Ledger constructors. --- src/Application.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Application.cpp b/src/Application.cpp index cf0a5c35f5..4a44115d94 100644 --- a/src/Application.cpp +++ b/src/Application.cpp @@ -118,7 +118,7 @@ void Application::run() firstLedger->setAccepted(); mMasterLedger.pushLedger(firstLedger); - Ledger::pointer secondLedger = boost::make_shared(firstLedger); + Ledger::pointer secondLedger = boost::make_shared(true, boost::ref(*firstLedger)); mMasterLedger.pushLedger(secondLedger); assert(!!secondLedger->getAccountState(rootAddress)); // temporary