diff options
author | luigi1111 <luigi1111w@gmail.com> | 2021-06-24 14:06:13 -0500 |
---|---|---|
committer | luigi1111 <luigi1111w@gmail.com> | 2021-06-24 14:06:13 -0500 |
commit | 99aa45fd34ef7c5a7a105dc7ed1131b734a296f1 (patch) | |
tree | ca930ea2d3c3545a3ff7b0dd54d7140baaefb60a /src/wallet/api/wallet.h | |
parent | Merge pull request #7742 (diff) | |
parent | wallet_api: signMessage: add sign with subaddress (diff) | |
download | monero-99aa45fd34ef7c5a7a105dc7ed1131b734a296f1.tar.xz |
Merge pull request #7746
1aa1850 wallet_api: signMessage: add sign with subaddress (tobtoht)
Diffstat (limited to 'src/wallet/api/wallet.h')
-rw-r--r-- | src/wallet/api/wallet.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/api/wallet.h b/src/wallet/api/wallet.h index dbbcda500..459990830 100644 --- a/src/wallet/api/wallet.h +++ b/src/wallet/api/wallet.h @@ -196,7 +196,7 @@ public: virtual bool checkSpendProof(const std::string &txid, const std::string &message, const std::string &signature, bool &good) const override; virtual std::string getReserveProof(bool all, uint32_t account_index, uint64_t amount, const std::string &message) const override; virtual bool checkReserveProof(const std::string &address, const std::string &message, const std::string &signature, bool &good, uint64_t &total, uint64_t &spent) const override; - virtual std::string signMessage(const std::string &message) override; + virtual std::string signMessage(const std::string &message, const std::string &address) override; virtual bool verifySignedMessage(const std::string &message, const std::string &address, const std::string &signature) const override; virtual std::string signMultisigParticipant(const std::string &message) const override; virtual bool verifyMessageWithPublicKey(const std::string &message, const std::string &publicKey, const std::string &signature) const override; |