This commit is contained in:
M66B 2022-03-07 07:53:14 +01:00
parent db01f1dbd5
commit a6c0073c8d
1 changed files with 0 additions and 1 deletions

View File

@ -30,7 +30,6 @@ public class MnemonicHelper {
static String get(byte[] entropy) {
StringBuilder sb = new StringBuilder();
new SecureRandom().nextBytes(entropy);
new MnemonicGenerator(English.INSTANCE).createMnemonic(entropy, sb::append);
return sb.toString();
}