Skip to content

Commit

Permalink
Readd return statement removed by mistake
Browse files Browse the repository at this point in the history
  • Loading branch information
oscarguindzberg committed Dec 7, 2020
1 parent 19c99da commit a3924ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/org/bitcoinj/core/PeerGroup.java
Original file line number Diff line number Diff line change
Expand Up @@ -218,11 +218,11 @@ public void onCoinsReceived(Wallet wallet, Transaction tx, Coin prevBalance, Coi
// recalculateFastCatchupAndFilter(FilterRecalculateMode.SEND_IF_CHANGED);
// else
// recalculateFastCatchupAndFilter(FilterRecalculateMode.SEND_IF_CHANGED);
// return;
// Original bitcoinj code is commented out.
// This is a fix to https://github.com/bitcoinj/bitcoinj/issues/2070
// Maybe it fixes https://github.com/bisq-network/bisq/issues/4870
recalculateFastCatchupAndFilter(FilterRecalculateMode.SEND_IF_CHANGED);
return;
}
}
}
Expand Down

0 comments on commit a3924ae

Please sign in to comment.