Fix a bug that breaks TX acquire logic.

This commit is contained in:
JoelKatz
2012-11-05 03:05:46 -08:00
parent d895858d0e
commit f491216302

View File

@@ -785,7 +785,7 @@ bool NetworkOPs::hasTXSet(const boost::shared_ptr<Peer>& peer, const uint256& se
void NetworkOPs::mapComplete(const uint256& hash, SHAMap::ref map)
{
if (!haveConsensusObject())
if (haveConsensusObject())
mConsensus->mapComplete(hash, map, true);
}