fixed broken carrotKeys() API method

This commit is contained in:
Some Random Crypto Guy
2025-10-08 20:40:33 +01:00
parent 119a7fab57
commit 3b00a41fff
+6 -6
View File
@@ -923,12 +923,12 @@ std::string WalletImpl::publicSpendKey() const
std::vector<std::string> 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)
};
}