From 808a0671c1d136290f4485020e759e8e9f6f4591 Mon Sep 17 00:00:00 2001 From: Some Random Crypto Guy Date: Mon, 11 Aug 2025 11:27:30 +0100 Subject: [PATCH] fixed coin-control patch to work with emplace_back() code instead of the deprecated tools::add_element() code --- patches/salvium/0008-coin-control.patch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/patches/salvium/0008-coin-control.patch b/patches/salvium/0008-coin-control.patch index f937486..57c5ebd 100644 --- a/patches/salvium/0008-coin-control.patch +++ b/patches/salvium/0008-coin-control.patch @@ -979,7 +979,7 @@ index 806de969a..8720e18b1 100644 // update m_transfers view-incoming scan info, and default values + boost::unique_lock lock(m_transfers_mutex); - transfer_details& td = tools::add_element(m_transfers); + transfer_details& td = m_transfers.emplace_back(); td.m_block_height = height; td.m_internal_output_index = local_output_index; @@ -11031,7 +11054,7 @@ void wallet2::transfer_selected_rct(std::vector