Merge pull request #6069

d64e5aa7 wallet: allow message sign/verify for subaddresses (moneromooo-monero)
This commit is contained in:
Alexander Blair 2020-02-06 00:29:32 -08:00
commit 3b224bb99d
No known key found for this signature in database
GPG key ID: C64552D877C32479
7 changed files with 67 additions and 19 deletions

View file

@ -1963,7 +1963,7 @@ namespace tools
return false;
}
res.signature = m_wallet->sign(req.data);
res.signature = m_wallet->sign(req.data, {req.account_index, req.address_index});
return true;
}
//------------------------------------------------------------------------------------------------------------------------------