Browse Source

Fixes Windows VS2013 build

cl-refactor
SharpCoiner 10 years ago
parent
commit
f0ea97a125
  1. 2
      libethereum/PeerServer.cpp

2
libethereum/PeerServer.cpp

@ -397,7 +397,7 @@ bool PeerServer::havePeer(Public _id) const
else
i = m_peers.erase(i);
return m_peers.count(_id);
return !!m_peers.count(_id);
}
bool PeerServer::ensureInitialised(TransactionQueue& _tq)

Loading…
Cancel
Save