diff options
author | Riccardo Spagni <ric@spagni.net> | 2019-04-16 22:37:52 +0200 |
---|---|---|
committer | Riccardo Spagni <ric@spagni.net> | 2019-04-16 22:37:52 +0200 |
commit | 96696d1e75c202b7770cfd5a2a44b5b79e380a34 (patch) | |
tree | cef4168e4aadc9f25853f6d4bebf52f04bb166e0 /src/wallet/wallet_rpc_server.cpp | |
parent | Merge pull request #5414 (diff) | |
parent | wallet_rpc_server: add a all flag to export_outputs (diff) | |
download | monero-96696d1e75c202b7770cfd5a2a44b5b79e380a34.tar.xz |
Merge pull request #5418
374f388d wallet_rpc_server: add a all flag to export_outputs (moneromooo-monero)
Diffstat (limited to 'src/wallet/wallet_rpc_server.cpp')
-rw-r--r-- | src/wallet/wallet_rpc_server.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wallet/wallet_rpc_server.cpp b/src/wallet/wallet_rpc_server.cpp index 71c64d3c1..9a7e15df2 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -2581,7 +2581,7 @@ namespace tools try { - res.outputs_data_hex = epee::string_tools::buff_to_hex_nodelimer(m_wallet->export_outputs_to_str()); + res.outputs_data_hex = epee::string_tools::buff_to_hex_nodelimer(m_wallet->export_outputs_to_str(req.all)); } catch (const std::exception &e) { |