Skip to content

Commit

Permalink
Merge pull request #33 from machinecoin-project/0.16
Browse files Browse the repository at this point in the history
0.16
  • Loading branch information
Nico205 authored Jun 13, 2018
2 parents 5feee4f + c50abb1 commit 8a034a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/masternode-payments.h
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ class CMasternodePayments
std::map<COutPoint, int> mapMasternodesLastVote;
std::map<COutPoint, int> mapMasternodesDidNotVote;

CMasternodePayments() : nStorageCoeff(1.25), nMinBlocksToStore(2000) {}
CMasternodePayments() : nStorageCoeff(1.25), nMinBlocksToStore(5000) {}

ADD_SERIALIZE_METHODS;

Expand Down
2 changes: 1 addition & 1 deletion src/net.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1986,7 +1986,7 @@ void CConnman::ThreadMnbRequestConnections()
std::pair<CService, std::set<uint256> > p = mnodeman.PopScheduledMnbRequestConnection();
if(p.first == CService() || p.second.empty()) continue;

OpenNetworkConnection(CAddress(p.first, NODE_NONE), false, &grant, nullptr, false, false, true, true, p.second);
OpenNetworkConnection(CAddress(p.first, NODE_NETWORK), false, &grant, nullptr, false, false, false, true, p.second);
if (!interruptNet.sleep_for(std::chrono::milliseconds(1000)))
return;
}
Expand Down

0 comments on commit 8a034a1

Please sign in to comment.