diff options
| author | Karl-Johan Alm <[email protected]> | 2020-03-02 17:17:33 +0900 |
|---|---|---|
| committer | Karl-Johan Alm <[email protected]> | 2020-03-02 17:27:35 +0900 |
| commit | df3a818d2a9fe48e656a8ad2da18fab8a1bfd6e3 (patch) | |
| tree | eae1adc54b06bc908c22465d01d76da256043c7d /src/wallet/wallet.cpp | |
| parent | wallet/spkm: make GetOldestKeyPoolTime() const (diff) | |
| download | discoin-df3a818d2a9fe48e656a8ad2da18fab8a1bfd6e3.tar.xz discoin-df3a818d2a9fe48e656a8ad2da18fab8a1bfd6e3.zip | |
wallet: make getters const
Diffstat (limited to 'src/wallet/wallet.cpp')
| -rw-r--r-- | src/wallet/wallet.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wallet/wallet.cpp b/src/wallet/wallet.cpp index bb227b975..94bcd4ba6 100644 --- a/src/wallet/wallet.cpp +++ b/src/wallet/wallet.cpp @@ -3201,7 +3201,7 @@ void CWallet::MarkDestinationsDirty(const std::set<CTxDestination>& destinations } } -std::map<CTxDestination, CAmount> CWallet::GetAddressBalances(interfaces::Chain::Lock& locked_chain) +std::map<CTxDestination, CAmount> CWallet::GetAddressBalances(interfaces::Chain::Lock& locked_chain) const { std::map<CTxDestination, CAmount> balances; @@ -3242,7 +3242,7 @@ std::map<CTxDestination, CAmount> CWallet::GetAddressBalances(interfaces::Chain: return balances; } -std::set< std::set<CTxDestination> > CWallet::GetAddressGroupings() +std::set< std::set<CTxDestination> > CWallet::GetAddressGroupings() const { AssertLockHeld(cs_wallet); std::set< std::set<CTxDestination> > groupings; |