diff --git a/src/net_processing.cpp b/src/net_processing.cpp --- a/src/net_processing.cpp +++ b/src/net_processing.cpp @@ -2192,8 +2192,6 @@ LOCK(cs_main); - std::vector vToFetch; - for (CInv &inv : vInv) { if (interruptMsgProc) { return true; @@ -2239,11 +2237,6 @@ // Track requests for our stuff GetMainSignals().Inventory(inv.hash); } - - if (!vToFetch.empty()) { - connman->PushMessage(pfrom, - msgMaker.Make(NetMsgType::GETDATA, vToFetch)); - } } else if (strCommand == NetMsgType::GETDATA) {