We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 339dcd3 commit 02167b7Copy full SHA for 02167b7
src/test/java/org/tron/core/db/AccountStoreTest.java
@@ -2,7 +2,6 @@
2
3
import com.google.protobuf.ByteString;
4
import java.io.File;
5
-import java.util.Random;
6
import org.junit.AfterClass;
7
import org.junit.Assert;
8
import org.junit.BeforeClass;
@@ -54,12 +53,4 @@ public void get() {
54
53
;
55
Assert.assertTrue(AccountStoreTest.has(data));
56
}
57
-
58
59
- public static byte[] randomBytes(int length) {
60
- //generate the random number
61
- byte[] result = new byte[length];
62
- new Random().nextBytes(result);
63
- return result;
64
- }
65
0 commit comments