Removed misbehaving masternode check due to wrongful banning

This commit is contained in:
Evan Duffield 2014-06-26 14:17:35 -07:00
parent 23563ef25e
commit caf32d54b5
2 changed files with 2 additions and 2 deletions

View File

@ -9,7 +9,7 @@
#define CLIENT_VERSION_MAJOR 0
#define CLIENT_VERSION_MINOR 9
#define CLIENT_VERSION_REVISION 11
#define CLIENT_VERSION_BUILD 4
#define CLIENT_VERSION_BUILD 5
// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE true

View File

@ -4236,7 +4236,7 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
std::string errorMessage = "";
if(!darkSendSigner.VerifyMessage(mn.pubkey2, vchSig, strMessage, errorMessage)){
printf("Got bad masternode address signature\n");
pfrom->Misbehaving(20);
//pfrom->Misbehaving(20);
return false;
}