mirror of
https://github.com/dashpay/dash.git
synced 2024-12-25 20:12:57 +01:00
broadcast dseep to all
This commit is contained in:
parent
1eb27c5f6b
commit
0661859600
@ -158,8 +158,13 @@ void CActiveMasternode::RegisterAsMasterNode(bool stop)
|
||||
LogPrintf("CActiveMasternode::RegisterAsMasterNode() - Masternode input = %s\n", vinMasternode.ToString().c_str());
|
||||
|
||||
if (stop) isCapableMasterNode = MASTERNODE_STOPPED;
|
||||
|
||||
RelayDarkSendElectionEntryPing(vinMasternode, vchMasterNodeSignature, masterNodeSignatureTime, stop);
|
||||
|
||||
//relay to all peers
|
||||
LOCK(cs_vNodes);
|
||||
BOOST_FOREACH(CNode* pnode, vNodes)
|
||||
{
|
||||
pnode->PushMessage("dseep", vinMasternode, vchMasterNodeSignature, masterNodeSignatureTime, stop);
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
|
@ -9,7 +9,7 @@
|
||||
#define CLIENT_VERSION_MAJOR 0
|
||||
#define CLIENT_VERSION_MINOR 10
|
||||
#define CLIENT_VERSION_REVISION 16
|
||||
#define CLIENT_VERSION_BUILD 7
|
||||
#define CLIENT_VERSION_BUILD 8
|
||||
|
||||
// Set to true for release, false for prerelease or test build
|
||||
#define CLIENT_VERSION_IS_RELEASE true
|
||||
|
Loading…
Reference in New Issue
Block a user