3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-11 17:55:53 +00:00

DeterministicKeyChain Builder - add seedCreationTimeSecs()

This commit is contained in:
Oscar Guindzberg 2015-01-28 17:17:37 -03:00
parent f1f07df11b
commit f3fa050c09

View File

@ -220,6 +220,11 @@ public class DeterministicKeyChain implements EncryptableKeyChain {
return self();
}
public T seedCreationTimeSecs(long seedCreationTimeSecs) {
this.seedCreationTimeSecs = seedCreationTimeSecs;
return self();
}
/** The passphrase to use with the generated mnemonic, or null if you would like to use the default empty string. Currently must be the empty string. */
public T passphrase(String passphrase) {
// FIXME support non-empty passphrase