MCPcopy Create free account
hub / github.com/LUX-Core/lux / SendDarkSendElectionEntryPing

Function SendDarkSendElectionEntryPing

src/net.cpp:2207–2219  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2205}
2206
2207void SendDarkSendElectionEntryPing(const CTxIn &vin, const std::vector<unsigned char> vchSig, const int64_t nNow, const bool stop)
2208{
2209 vector<CNode*> vNodesCopy;
2210 {
2211 LOCK(cs_vNodes);
2212 vNodesCopy = vNodes;
2213 }
2214
2215 for (CNode* pnode : vNodesCopy) {
2216 if (pnode)
2217 pnode->PushMessage("dseep", vin, vchSig, nNow, stop);
2218 }
2219}
2220
2221void RelayDarkSendCompletedTransaction(const int sessionID, const bool error, const std::string errorMessage)
2222{

Callers 1

DseepMethod · 0.85

Calls 1

PushMessageMethod · 0.80

Tested by

no test coverage detected