Skip to content
This repository has been archived by the owner on Jun 17, 2020. It is now read-only.

Commit

Permalink
Wrap code at 120 characters (bisq-network/style#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
cbeams committed Mar 20, 2018
1 parent 7d0ce2f commit 3e3cdaf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,8 @@ public String getPaymentProtocolId() {
}

@Override
public void checkDifficultyTransitions(StoredBlock storedPrev, Block next, BlockStore blockStore) throws VerificationException, BlockStoreException {
public void checkDifficultyTransitions(StoredBlock storedPrev, Block next, BlockStore blockStore)
throws VerificationException, BlockStoreException {
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -943,7 +943,9 @@ public void testICH() {
assertFalse(validator.validate("DYzyJYqhnxF738QjqMqTku5Wft7x4GhVCr").isValid);
assertFalse(validator.validate("xYzyJYqhnxF738QjqMqTku5Wft7x4GhVCr").isValid);
assertFalse(validator.validate("1YzyJYqhnxF738QjqMqTku5Wft7x4GhVCr").isValid);
assertFalse(validator.validate("AYzyJYqhnxF738QjqMqTku5Wft7x4GhVCr5vcz2NZLUDsoXGp5rAFUjKnb7DdkFbLp7aSpejCcC4FTxsVvDxq9YKSprzf").isValid);
assertFalse(validator.validate(
"AYzyJYqhnxF738QjqMqTku5Wft7x4GhVCr5vcz2NZLUDsoXGp5rAFUjKnb7DdkFbLp7aSpejCcC4FTxsVvDxq9YKSprzf"
).isValid);
assertFalse(validator.validate("").isValid);
}
}

0 comments on commit 3e3cdaf

Please sign in to comment.