Merge pull request #3599

8787fd8 WalletApi: publicMultisigSignerKey method (naughtyfox)
This commit is contained in:
luigi1111
2018-06-08 14:45:46 -05:00
3 changed files with 17 additions and 0 deletions

View File

@@ -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();