diff options
| author | Matt Corallo <[email protected]> | 2018-07-09 20:06:39 -0400 |
|---|---|---|
| committer | Matt Corallo <[email protected]> | 2018-07-09 20:06:39 -0400 |
| commit | beef7ec4be725beea870a2da510d2817487601ec (patch) | |
| tree | ef04c6baeb971bf61a8d4024e15034c527ac059b /src/net_processing.cpp | |
| parent | Merge #13481: doc: Rewrite some validation docs as lock annotations (diff) | |
| download | discoin-beef7ec4be725beea870a2da510d2817487601ec.tar.xz discoin-beef7ec4be725beea870a2da510d2817487601ec.zip | |
Remove useless mapRequest tracking that just effects Qt display.
I thought we had removed this a long time ago, TBH, its really
confusing feedback to users that we display whether a tx was
broadcast to immediate neighbor nodes, given that has little
indication of whether the tx propagated very far.
Diffstat (limited to 'src/net_processing.cpp')
| -rw-r--r-- | src/net_processing.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/net_processing.cpp b/src/net_processing.cpp index 458e9c2e9..2f3a60406 100644 --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -1264,9 +1264,6 @@ void static ProcessGetData(CNode* pfrom, const CChainParams& chainparams, CConnm if (!push) { vNotFound.push_back(inv); } - - // Track requests for our stuff. - GetMainSignals().Inventory(inv.hash); } } // release cs_main @@ -1965,9 +1962,6 @@ bool static ProcessMessage(CNode* pfrom, const std::string& strCommand, CDataStr pfrom->AskFor(inv); } } - - // Track requests for our stuff - GetMainSignals().Inventory(inv.hash); } } |