diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-10-31 14:09:19 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-12-31 08:44:36 +0000 |
commit | d64e5aa71936d86f91d3f45a9da0468f97078409 (patch) | |
tree | 1376f2390b9c971f95b9e188d38f899af6a6e84f /src/wallet/wallet2.h | |
parent | Merge pull request #6044 (diff) | |
download | monero-d64e5aa71936d86f91d3f45a9da0468f97078409.tar.xz |
wallet: allow message sign/verify for subaddresses
Diffstat (limited to 'src/wallet/wallet2.h')
-rw-r--r-- | src/wallet/wallet2.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet2.h b/src/wallet/wallet2.h index 640565a4e..38e3afd69 100644 --- a/src/wallet/wallet2.h +++ b/src/wallet/wallet2.h @@ -1182,7 +1182,7 @@ private: */ void set_account_tag_description(const std::string& tag, const std::string& description); - std::string sign(const std::string &data) const; + std::string sign(const std::string &data, cryptonote::subaddress_index index = {0, 0}) const; bool verify(const std::string &data, const cryptonote::account_public_address &address, const std::string &signature) const; /*! |