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

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
adrianziser committed Aug 12, 2017
1 parent ba0d5bb commit 3650407
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/jota/utils/Converter.java
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ public static int[] tritsString(final String trytes) {
**/
public static int[] trits(final String trytes) {
final List<Integer> trits = new LinkedList<>();
if (trytes.length() < 20 && InputValidator.isValue(trytes)) {
if (InputValidator.isValue(trytes)) {

long value = Long.parseLong(trytes);

Expand Down

0 comments on commit 3650407

Please sign in to comment.