diff options
author | luigi1111 <luigi1111w@gmail.com> | 2018-06-08 14:45:46 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2018-06-08 14:45:46 -0500 |
commit | 6884db7b31beb36889d240dd346eda1e006046da (patch) | |
tree | eb8e6ee2811ed1fe1a13d3fd3524e1de5237b992 /src/wallet/api/wallet2_api.h | |
parent | Merge pull request #3598 (diff) | |
parent | WalletApi: publicMultisigSignerKey method (diff) | |
download | monero-6884db7b31beb36889d240dd346eda1e006046da.tar.xz |
Merge pull request #3599
8787fd8 WalletApi: publicMultisigSignerKey method (naughtyfox)
Diffstat (limited to 'src/wallet/api/wallet2_api.h')
-rw-r--r-- | src/wallet/api/wallet2_api.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/wallet/api/wallet2_api.h b/src/wallet/api/wallet2_api.h index d0c4b36b9..5b99bd975 100644 --- a/src/wallet/api/wallet2_api.h +++ b/src/wallet/api/wallet2_api.h @@ -444,6 +444,12 @@ struct Wallet virtual std::string publicSpendKey() const = 0; /*! + * \brief publicMultisigSignerKey - returns public signer key + * \return - public multisignature signer key or empty string if wallet is not multisig + */ + virtual std::string publicMultisigSignerKey() const = 0; + + /*! * \brief store - stores wallet to file. * \param path - main filename to store wallet to. additionally stores address file and keys file. * to store to the same file - just pass empty string; |