eduffield
Core Developer
Hi, guys. Was the 0.10.15.13 binary compiled from the v0.10.15.13 branch or the master branch?
if(!darkSendSigner.IsVinAssociatedWithPubkey(vin, pubkey)) {
LogPrintf("dsee - Got mismatched pubkey and vin\n");
pfrom->Misbehaving(100);
return false;
}
This block of code above is missing in the v0.10.15.13 branch but it is in the master branch and v0.10.14.1 branch. Does it have any effect on the disconnect behavior we are seeing in masternodes in the past few days?
EDIT: This block of code is from src/main.cpp
It's just moved down a bit:
https://github.com/darkcoin/darkcoin/blob/v0.10.15.13/src/main.cpp#L4331