diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-10 10:37:34 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2019-04-10 10:37:34 +0000 |
commit | 374f388de21b253c165792a893cdb4f158cdc24b (patch) | |
tree | 70c54a25e3aeb1a0a5754df0051ced72fb94e5bf /src/wallet/wallet_rpc_server.cpp | |
parent | Merge pull request #5364 (diff) | |
download | monero-374f388de21b253c165792a893cdb4f158cdc24b.tar.xz |
wallet_rpc_server: add a all flag to export_outputs
if we don't want to export new outputs only
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 92265d954..79053e02b 100644 --- a/src/wallet/wallet_rpc_server.cpp +++ b/src/wallet/wallet_rpc_server.cpp @@ -2518,7 +2518,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) { |