diff options
author | John Newbery <john@johnnewbery.com> | 2018-04-04 12:47:55 -0400 |
---|---|---|
committer | John Newbery <john@johnnewbery.com> | 2018-05-19 11:21:15 -0400 |
commit | c75c351419dac3dfe9578604ea5b2f7599452b4a (patch) | |
tree | 0da18b15841a1a88164f9801f91d3cc5a94b9fd2 /src/wallet/wallet.h | |
parent | 131d4450b913fa4f00dc8b176dc996d39f786c19 (diff) |
[refactor] manually change remaining instances of master key to seed.
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 938f954e2b..142c54d7bd 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -1139,14 +1139,14 @@ public: /* Returns true if HD is enabled */ bool IsHDEnabled() const; - /* Generates a new HD master key (will not be activated) */ + /* Generates a new HD seed (will not be activated) */ CPubKey GenerateNewSeed(); /* Derives a new HD master key (will not be activated) */ CPubKey DeriveNewSeed(const CKey& key); - /* Set the current HD master key (will reset the chain child index counters) - Sets the master key's version based on the current wallet version (so the + /* Set the current HD seed (will reset the chain child index counters) + Sets the seed's version based on the current wallet version (so the caller must ensure the current wallet version is correct before calling this function). */ bool SetHDSeed(const CPubKey& key); |