wallet_rpc_server: optionally return tx keys in sign_transfer

This commit is contained in:
moneromooo-monero 2018-10-10 15:54:59 +00:00
parent c23b6f8f56
commit 67e76aa06c
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3
3 changed files with 10 additions and 0 deletions

View file

@ -981,6 +981,8 @@ namespace tools
for (auto &ptx: ptxs)
{
res.tx_hash_list.push_back(epee::string_tools::pod_to_hex(cryptonote::get_transaction_hash(ptx.tx)));
if (req.get_tx_keys)
res.tx_key_list.push_back(epee::string_tools::pod_to_hex(ptx.tx_key));
}
if (req.export_raw)