Update p2p/src/main/java/bisq/network/p2p/storage/P2PDataStorage.java

Co-authored-by: sqrrm <sqrrm@users.noreply.github.com>
This commit is contained in:
chimp1984 2020-10-02 13:25:51 -05:00 committed by GitHub
parent 611bcef461
commit e9c57b1a4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -285,11 +285,10 @@ public class P2PDataStorage implements MessageListener, ConnectionListener, Pers
// As we add the version to our request we only use the live data. Eventually missing data will be
// derived from the version.
serviceMap = historicalDataStoreService.getMapOfLiveData();
map.putAll(serviceMap);
} else {
serviceMap = service.getMap();
map.putAll(serviceMap);
}
map.putAll(serviceMap);
log.info("We added {} entries from {} to the excluded key set of our request",
serviceMap.size(), service.getClass().getSimpleName());
});