Remove an extraneous debug message.

This commit is contained in:
JoelKatz
2012-06-18 19:20:10 -07:00
parent 07d16749ae
commit 9bf119092a

View File

@@ -632,11 +632,10 @@ void Peer::recvTransaction(newcoin::TMTransaction& packet)
void Peer::recvPropose(newcoin::TMProposeSet& packet)
{
Log(lsINFO) << "Received proposal from peer";
if ((packet.currenttxhash().size() != 32) || (packet.nodepubkey().size() < 28) ||
(packet.signature().size() < 56))
{
Log(lsWARNING) << "Proposal is malformed";
Log(lsWARNING) << "Received proposal is malformed";
return;
}