mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-07-30 19:41:24 +00:00
PeerGroup: Fix NullPointerException in handleNewPeer() if no download peer could be selected.
This commit is contained in:
@@ -1515,11 +1515,14 @@ public class PeerGroup implements TransactionBroadcaster {
|
||||
for (Wallet wallet : wallets)
|
||||
peer.addWallet(wallet);
|
||||
if (downloadPeer == null) {
|
||||
// Kick off chain download if we aren't already doing it.
|
||||
setDownloadPeer(selectDownloadPeer(peers));
|
||||
boolean shouldDownloadChain = downloadListener != null && chain != null;
|
||||
if (shouldDownloadChain) {
|
||||
startBlockChainDownloadFromPeer(downloadPeer);
|
||||
Peer newDownloadPeer = selectDownloadPeer(peers);
|
||||
if (newDownloadPeer != null) {
|
||||
setDownloadPeer(newDownloadPeer);
|
||||
// Kick off chain download if we aren't already doing it.
|
||||
boolean shouldDownloadChain = downloadListener != null && chain != null;
|
||||
if (shouldDownloadChain) {
|
||||
startBlockChainDownloadFromPeer(downloadPeer);
|
||||
}
|
||||
}
|
||||
}
|
||||
// Make sure the peer knows how to upload transactions that are requested from us.
|
||||
|
Reference in New Issue
Block a user