From 3b00a41fff328c841de122bff97525614fd7da41 Mon Sep 17 00:00:00 2001 From: Some Random Crypto Guy Date: Wed, 8 Oct 2025 20:40:33 +0100 Subject: [PATCH] fixed broken carrotKeys() API method --- src/wallet/api/wallet.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/wallet/api/wallet.cpp b/src/wallet/api/wallet.cpp index 6c7e54bbf..33f038406 100644 --- a/src/wallet/api/wallet.cpp +++ b/src/wallet/api/wallet.cpp @@ -923,12 +923,12 @@ std::string WalletImpl::publicSpendKey() const std::vector WalletImpl::carrotKeys() const { return { - epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().m_carrot_account_address.s_master), - epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().m_carrot_account_address.k_prove_spend), - epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().m_carrot_account_address.s_view_balance), - epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().m_carrot_account_address.k_view_incoming), - epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().m_carrot_account_address.k_generate_image), - epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().m_carrot_account_address.s_generate_address) + epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().s_master), + epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().k_prove_spend), + epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().s_view_balance), + epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().k_view_incoming), + epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().k_generate_image), + epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().s_generate_address) }; }