diff options
author | MarcoFalke <falke.marco@gmail.com> | 2019-01-05 12:02:12 +0100 |
---|---|---|
committer | MarcoFalke <falke.marco@gmail.com> | 2019-01-05 16:16:37 +0100 |
commit | fa2510d5c1cdf9c2cd5cc9887302ced4378c7202 (patch) | |
tree | 616492efb0b268d8e37ba57bda813aaacc66c975 /src/wallet/wallet.h | |
parent | f7e182a973ed66b4c11dc6239e57016655503b4c (diff) |
Use C++11 default member initializers
Diffstat (limited to 'src/wallet/wallet.h')
-rw-r--r-- | src/wallet/wallet.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/wallet/wallet.h b/src/wallet/wallet.h index 95a2c833f8..3a3ec43c9b 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -1178,18 +1178,16 @@ class CReserveKey final : public CReserveScript { protected: CWallet* pwallet; - int64_t nIndex; + int64_t nIndex{-1}; CPubKey vchPubKey; - bool fInternal; + bool fInternal{false}; + public: explicit CReserveKey(CWallet* pwalletIn) { - nIndex = -1; pwallet = pwalletIn; - fInternal = false; } - CReserveKey() = default; CReserveKey(const CReserveKey&) = delete; CReserveKey& operator=(const CReserveKey&) = delete; |