From 1277818b23fe364d93b9b2934b9c7e6cc4db75a0 Mon Sep 17 00:00:00 2001 From: cryptozoidberg Date: Tue, 21 Nov 2023 18:04:51 +0100 Subject: [PATCH] added mutable to variable --- src/wallet/wallet2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 56ae0658..0e42bc0b 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -138,7 +138,7 @@ namespace tools std::unordered_map m_tx_keys; std::unordered_map m_own_asset_descriptors; std::unordered_map m_custom_assets; //assets that manually added by user - std::unordered_map m_whitelisted_assets; //assets that whitelisted + mutable std::unordered_map m_whitelisted_assets; //assets that whitelisted escrow_contracts_container m_contracts; std::multimap m_htlcs; //map [expired_if_more_then] -> height of expiration amount_gindex_to_transfer_id_container m_active_htlcs; // map [amount; gindex] -> transfer index