From 2909fd2505dbb114bd7ce098d9eac0ea177a2735 Mon Sep 17 00:00:00 2001 From: Some Random Crypto Guy Date: Mon, 14 Jul 2025 14:25:28 +0100 Subject: [PATCH] Fixed pre-scanning for AUDIT TXs --- src/wallet/wallet2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 643a0dfb2..c8da47621 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -2583,7 +2583,7 @@ void wallet2::process_new_scanned_transaction( enote_scan_info->subaddr_index->index.major, enote_scan_info->subaddr_index->index.minor}; // Only count >0 amount outs - if (enote_scan_info->amount > 0) + //if (enote_scan_info->amount > 0) { tx_money_got_in_outs[subaddr_index_cn][enote_scan_info->asset_type] += extra_received_money; tx_amounts_individual_outs[subaddr_index_cn].push_back(std::make_tuple(extra_received_money, onetime_address));