Clean up some line endings.

This commit is contained in:
Andreas Schildbach
2016-07-18 13:30:22 +02:00
parent 25bd8d84c6
commit 10f0990848

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;