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/walletdb.h | |
parent | 131d4450b913fa4f00dc8b176dc996d39f786c19 (diff) |
[refactor] manually change remaining instances of master key to seed.
Diffstat (limited to 'src/wallet/walletdb.h')
-rw-r--r-- | src/wallet/walletdb.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/walletdb.h b/src/wallet/walletdb.h index 226e18cf1a..3237376f63 100644 --- a/src/wallet/walletdb.h +++ b/src/wallet/walletdb.h @@ -62,7 +62,7 @@ class CHDChain public: uint32_t nExternalChainCounter; uint32_t nInternalChainCounter; - CKeyID seed_id; //!< master key hash160 + CKeyID seed_id; //!< seed hash160 static const int VERSION_HD_BASE = 1; static const int VERSION_HD_CHAIN_SPLIT = 2; @@ -99,7 +99,7 @@ public: int nVersion; int64_t nCreateTime; // 0 means unknown std::string hdKeypath; //optional HD/bip32 keypath - CKeyID hd_seed_id; //id of the HD masterkey used to derive this key + CKeyID hd_seed_id; //id of the HD seed used to derive this key CKeyMetadata() { |