mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-11 17:58:01 +01:00
DeterministicKeyChain Builder - add seedCreationTimeSecs()
This commit is contained in:
parent
f1f07df11b
commit
f3fa050c09
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue