aboutsummaryrefslogtreecommitdiff
path: root/src/net_processing.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2018-07-11 16:00:12 +0200
committerWladimir J. van der Laan <[email protected]>2018-07-11 16:36:15 +0200
commite538a952d5f05b9547df51d4c2a5b8858f3ab100 (patch)
treea0c6cd596e63557650bb3655cedb1edb4c02cc72 /src/net_processing.cpp
parentMerge #13586: refactor: add benchmarks to bech32::Encode/Decode (diff)
parentRemove useless mapRequest tracking that just effects Qt display. (diff)
downloaddiscoin-e538a952d5f05b9547df51d4c2a5b8858f3ab100.tar.xz
discoin-e538a952d5f05b9547df51d4c2a5b8858f3ab100.zip
Merge #13622: Remove mapRequest tracking that just effects Qt display.
beef7ec4be725beea870a2da510d2817487601ec Remove useless mapRequest tracking that just effects Qt display. (Matt Corallo) Pull request description: 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. Tree-SHA512: c9d0808fb60146919bb78d0860ec2193601966c944887eaae7837408422f7e85dfdb306407a613200cdd4726aec66da18df618ebc6a8cfe8650bf08d4a8dc155
Diffstat (limited to 'src/net_processing.cpp')
-rw-r--r--src/net_processing.cpp6
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);
}
}