diff options
author | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-06-15 10:49:29 +0200 |
---|---|---|
committer | Jonas Schnelli <dev@jonasschnelli.ch> | 2016-07-27 15:19:23 +0200 |
commit | 77c912d21c8cd153f4503c65225a5a46990cc85a (patch) | |
tree | c5b5f602b9034c80ad075a586d8793ce5f8dd02f /src/wallet/wallet.h | |
parent | 8e048f40cc25b6ad3f49d2828c8562b657d91ced (diff) |
[Wallet] add HD xpriv to dumpwallet
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 3a3cb6d851..efed2ba11d 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -899,10 +899,10 @@ public: /* Set the HD chain model (chain child index counters) */ bool SetHDChain(const CHDChain& chain, bool memonly); + const CHDChain& GetHDChain() { return hdChain; } /* Set the current HD master key (will reset the chain child index counters) */ bool SetHDMasterKey(const CKey& key); - const CHDChain& GetHDChain() { return hdChain; } }; /** A key allocated from the key pool. */ |