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

Commit 3650407

Browse files
committed
cleanup
1 parent ba0d5bb commit 3650407

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/jota/utils/Converter.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ public static int[] tritsString(final String trytes) {
166166
**/
167167
public static int[] trits(final String trytes) {
168168
final List<Integer> trits = new LinkedList<>();
169-
if (trytes.length() < 20 && InputValidator.isValue(trytes)) {
169+
if (InputValidator.isValue(trytes)) {
170170

171171
long value = Long.parseLong(trytes);
172172

0 commit comments

Comments
 (0)