mirror of
https://github.com/monero-project/monero.git
synced 2025-08-06 05:54:38 -04:00
Merge pull request #4552
67e76aa0
wallet_rpc_server: optionally return tx keys in sign_transfer (moneromooo-monero)
This commit is contained in:
commit
169e6e9074
3 changed files with 10 additions and 0 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue