Clean up some line endings.

This commit is contained in:
Andreas Schildbach 2016-07-18 13:30:22 +02:00
parent b3bb2c53c9
commit 8c0cfaeee7

View File

@ -52,10 +52,10 @@ public abstract class AbstractBitcoinNetParams extends NetworkParameters {
super();
}
/**
* Checks if we are at a difficulty transition point.
* @param storedPrev The previous stored block
* @return If this is a difficulty transition point
/**
* Checks if we are at a difficulty transition point.
* @param storedPrev The previous stored block
* @return If this is a difficulty transition point
*/
protected boolean isDifficultyTransitionPoint(StoredBlock storedPrev) {
return ((storedPrev.getHeight() + 1) % this.getInterval()) == 0;