From a2dc2dbf5f8d18d52078a43d65f75d96f14548d6 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 20 Jun 2012 19:34:48 -0700 Subject: [PATCH] Make it compile. --- src/NetworkOPs.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/src/NetworkOPs.cpp b/src/NetworkOPs.cpp index 0aac602b2d..f92a016f95 100644 --- a/src/NetworkOPs.cpp +++ b/src/NetworkOPs.cpp @@ -372,11 +372,8 @@ bool NetworkOPs::checkLastClosedLedger(const std::vector& peerLis Ledger::pointer currentClosed = mLedgerMaster->getClosedLedger(); uint256 closedLedger = currentClosed->getHash(); ValidationCount& ourVC = ledgers[closedLedger]; - if (mHaveLCL) - { - ++ourVC.nodesUsing; - ourVC.highNode = theApp->getWallet().getNodePublic(); - } + ++ourVC.nodesUsing; + ourVC.highNode = theApp->getWallet().getNodePublic(); for (std::vector::const_iterator it = peerList.begin(), end = peerList.end(); it != end; ++it) {