From b861d854a9b32f77c260d9a7c9471ae03f9caa24 Mon Sep 17 00:00:00 2001 From: sowle Date: Mon, 12 Aug 2024 20:04:18 +0200 Subject: [PATCH] boost::shared_ptr ->std::shared_ptr --- src/wallet/decoy_selection.h | 1 - src/wallet/wallet2_base.h | 3 +-- src/wallet/wallet_chain_shortener.h | 1 - 3 files changed, 1 insertion(+), 4 deletions(-) diff --git a/src/wallet/decoy_selection.h b/src/wallet/decoy_selection.h index 0d732b0a..de4cecf9 100644 --- a/src/wallet/decoy_selection.h +++ b/src/wallet/decoy_selection.h @@ -9,7 +9,6 @@ #include #include #include -#include #include #include diff --git a/src/wallet/wallet2_base.h b/src/wallet/wallet2_base.h index bcd006df..f8b4eadf 100644 --- a/src/wallet/wallet2_base.h +++ b/src/wallet/wallet2_base.h @@ -11,7 +11,6 @@ #include #include #include -#include #include #include @@ -356,7 +355,7 @@ namespace tools uint64_t m_spent_height = 0; uint32_t m_flags = 0; uint64_t m_amount = 0; - boost::shared_ptr m_zc_info_ptr; + std::shared_ptr m_zc_info_ptr; uint64_t amount() const { return m_amount; } uint64_t amount_for_global_output_index() const { return is_zc() ? 0 : m_amount; } // amount value for global outputs index, it's zero for outputs with hidden amounts diff --git a/src/wallet/wallet_chain_shortener.h b/src/wallet/wallet_chain_shortener.h index e3d851ca..a5e66a9a 100644 --- a/src/wallet/wallet_chain_shortener.h +++ b/src/wallet/wallet_chain_shortener.h @@ -10,7 +10,6 @@ #include #include #include -#include #include #include