3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-12 10:15:52 +00:00

DeterministicKeyChain.Builder: Use constant for default entrophy.

This commit is contained in:
Andreas Schildbach 2019-01-26 14:37:45 +01:00
parent 5d9f25b03a
commit 30a066797d

View File

@ -162,7 +162,7 @@ public class DeterministicKeyChain implements EncryptableKeyChain {
public static class Builder<T extends Builder<T>> {
protected SecureRandom random;
protected int bits = 128;
protected int bits = DeterministicSeed.DEFAULT_SEED_ENTROPY_BITS;
protected String passphrase;
protected long seedCreationTimeSecs;
protected byte[] entropy;