From 075ba14f9f2a5c9ac7be1ce8300ca7e6bf0228cd Mon Sep 17 00:00:00 2001 From: Some Random Crypto Guy Date: Wed, 12 Jun 2024 12:48:42 +0100 Subject: [PATCH] fix to wallet issue on all transfers _after_ an aborted one; disabled update checking on moneropulse; bumped version number to 0.2.5 --- src/cryptonote_core/cryptonote_core.cpp | 2 +- src/version.cpp.in | 2 +- src/wallet/wallet2.cpp | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/cryptonote_core/cryptonote_core.cpp b/src/cryptonote_core/cryptonote_core.cpp index 55e90f0df..167cf7ca9 100644 --- a/src/cryptonote_core/cryptonote_core.cpp +++ b/src/cryptonote_core/cryptonote_core.cpp @@ -171,7 +171,7 @@ namespace cryptonote static const command_line::arg_descriptor arg_check_updates = { "check-updates" , "Check for new versions of monero: [disabled|notify|download|update]" - , "notify" + , "disabled" }; static const command_line::arg_descriptor arg_fluffy_blocks = { "fluffy-blocks" diff --git a/src/version.cpp.in b/src/version.cpp.in index f1c210dae..2dff5f01a 100644 --- a/src/version.cpp.in +++ b/src/version.cpp.in @@ -1,5 +1,5 @@ #define DEF_SALVIUM_VERSION_TAG "7f6b8da" -#define DEF_SALVIUM_VERSION "0.2.4" +#define DEF_SALVIUM_VERSION "0.2.5" #define DEF_MONERO_VERSION_TAG "@VERSIONTAG@" #define DEF_MONERO_VERSION "0.18.3.3" #define DEF_MONERO_RELEASE_NAME "Zero" diff --git a/src/wallet/wallet2.cpp b/src/wallet/wallet2.cpp index 67abbb710..0b09b897b 100644 --- a/src/wallet/wallet2.cpp +++ b/src/wallet/wallet2.cpp @@ -9209,7 +9209,7 @@ void wallet2::get_outs(std::vector> { MINFO("Using it"); //req.outputs.push_back({amount, out, true}); // Rings are stored referencing global output IDs - add_output_to_lists({amount, out}); + add_output_to_lists({amount, out, true}); ++num_found; seen_indices.emplace(out); if (out == td.m_global_output_index) @@ -9497,7 +9497,7 @@ void wallet2::get_outs(std::vector> break; } } - THROW_WALLET_EXCEPTION_IF(!found, error::wallet_internal_error, "Falied to find existing ring output in daemon out data"); + THROW_WALLET_EXCEPTION_IF(!found, error::wallet_internal_error, "Failed to find existing ring output in daemon out data"); } } }