aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKarl-Johan Alm <karljohan-alm@garage.co.jp>2020-03-02 17:21:38 +0900
committerKarl-Johan Alm <karljohan-alm@garage.co.jp>2020-03-02 17:27:35 +0900
commitd9b0ebc1da8758645f6de24a4a557511ef9b5e36 (patch)
treea3855e91d1ed2329ac9a9daee2bbc89047837408 /src
parent57c569e4d9779e2263848770e0ba7eab3054a1bf (diff)
downloadbitcoin-d9b0ebc1da8758645f6de24a4a557511ef9b5e36.tar.xz
wallet: make ReserveDestination pwallet ivar const
Diffstat (limited to 'src')
-rw-r--r--src/wallet/wallet.h2
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;