Don't bail out from ProcessMasternodeConnections in regtest (#2368)

We actually do masternode testing now and we will rely on this behavior
This commit is contained in:
Alexander Block 2018-10-24 13:31:45 +02:00 committed by GitHub
parent 3c9237aa40
commit 53e12b7b40
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -871,9 +871,6 @@ bool CMasternodeMan::GetMasternodeRanks(CMasternodeMan::rank_pair_vec_t& vecMast
void CMasternodeMan::ProcessMasternodeConnections(CConnman& connman)
{
//we don't care about this for regtest
if(Params().NetworkIDString() == CBaseChainParams::REGTEST) return;
std::vector<masternode_info_t> vecMnInfo; // will be empty when no wallet
#ifdef ENABLE_WALLET
privateSendClient.GetMixingMasternodesInfo(vecMnInfo);