We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a45323a commit 21c7c7aCopy full SHA for 21c7c7a
src/main/java/org/tron/core/net/node/NodeImpl.java
@@ -479,6 +479,7 @@ private void consumerAdvObjToFetch() {
479
if ( (idToFetch.getType().equals(InventoryType.TRX) && TrxCache.getIfPresent(hash) != null) ||
480
(idToFetch.getType().equals(InventoryType.BLOCK) && BlockCache.getIfPresent(hash) != null) ){
481
logger.info("{} {} Already exist.", idToFetch.getType(), hash);
482
+ advObjToFetch.remove(hash);
483
return;
484
}
485
if (idToFetch.getTime() < now - MSG_CACHE_DURATION_IN_BLOCKS * BLOCK_PRODUCED_INTERVAL) {
0 commit comments