diff options
author | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2020-03-02 17:21:38 +0900 |
---|---|---|
committer | Karl-Johan Alm <karljohan-alm@garage.co.jp> | 2020-03-02 17:27:35 +0900 |
commit | d9b0ebc1da8758645f6de24a4a557511ef9b5e36 (patch) | |
tree | a3855e91d1ed2329ac9a9daee2bbc89047837408 | |
parent | 57c569e4d9779e2263848770e0ba7eab3054a1bf (diff) |
wallet: make ReserveDestination pwallet ivar const
-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 864e180adb..3664a6787c 100644 --- a/src/wallet/wallet.h +++ b/src/wallet/wallet.h @@ -141,7 +141,7 @@ class ReserveDestination { protected: //! The wallet to reserve from - CWallet* const pwallet; + const CWallet* const pwallet; //! The ScriptPubKeyMan to reserve from. Based on type when GetReservedDestination is called ScriptPubKeyMan* m_spk_man{nullptr}; OutputType const type; |