mirror of
https://github.com/monero-project/monero.git
synced 2026-01-13 13:27:34 -08:00
Merge pull request #3599
8787fd8 WalletApi: publicMultisigSignerKey method (naughtyfox)
This commit is contained in:
@@ -778,6 +778,16 @@ std::string WalletImpl::publicSpendKey() const
|
||||
return epee::string_tools::pod_to_hex(m_wallet->get_account().get_keys().m_account_address.m_spend_public_key);
|
||||
}
|
||||
|
||||
std::string WalletImpl::publicMultisigSignerKey() const
|
||||
{
|
||||
try {
|
||||
crypto::public_key signer = m_wallet->get_multisig_signer_public_key();
|
||||
return epee::string_tools::pod_to_hex(signer);
|
||||
} catch (const std::exception&) {
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
std::string WalletImpl::path() const
|
||||
{
|
||||
return m_wallet->path();
|
||||
|
||||
Reference in New Issue
Block a user