mirror of
https://github.com/monero-project/monero.git
synced 2025-08-08 11:22:27 -04:00
Merge pull request #6069
d64e5aa7
wallet: allow message sign/verify for subaddresses (moneromooo-monero)
This commit is contained in:
commit
3b224bb99d
7 changed files with 67 additions and 19 deletions
|
@ -1597,9 +1597,13 @@ namespace wallet_rpc
|
|||
struct request_t
|
||||
{
|
||||
std::string data;
|
||||
uint32_t account_index;
|
||||
uint32_t address_index;
|
||||
|
||||
BEGIN_KV_SERIALIZE_MAP()
|
||||
KV_SERIALIZE(data);
|
||||
KV_SERIALIZE(data)
|
||||
KV_SERIALIZE_OPT(account_index, 0u)
|
||||
KV_SERIALIZE_OPT(address_index, 0u)
|
||||
END_KV_SERIALIZE_MAP()
|
||||
};
|
||||
typedef epee::misc_utils::struct_init<request_t> request;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue