From b789dff67813cd5e5ee07abeb0c8347bcae42970 Mon Sep 17 00:00:00 2001 From: Nathan Hourt Date: Fri, 31 Jul 2015 09:51:05 -0400 Subject: [PATCH] Fix build --- programs/light_client/ChainDataModel.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/programs/light_client/ChainDataModel.cpp b/programs/light_client/ChainDataModel.cpp index 159ef616..2d42449b 100644 --- a/programs/light_client/ChainDataModel.cpp +++ b/programs/light_client/ChainDataModel.cpp @@ -149,7 +149,8 @@ void ChainDataModel::getAccountImpl(QString accountIdentifier, Account* const * else elog("Handling object deletions is not yet implemented: ${update}", ("update", update)); } - }, {accountIdentifier.toStdString()}); + // TODO: replace true on the next line with a smarter decision as to whether we need status updates or not + }, {accountIdentifier.toStdString()}, true); fc::optional accountPackage; if (result.count(accountIdentifier.toStdString())) {