diff options
author | stoffu <stoffu@protonmail.ch> | 2018-10-18 08:01:56 +0900 |
---|---|---|
committer | stoffu <stoffu@protonmail.ch> | 2018-10-18 10:10:36 +0900 |
commit | d7ff707b528e8038ab3b63f11670fe443ec69f82 (patch) | |
tree | efab60a86fc6093981b9588b65b5db200872cb03 /src/rpc/core_rpc_server.cpp | |
parent | Merge pull request #4603 (diff) | |
download | monero-d7ff707b528e8038ab3b63f11670fe443ec69f82.tar.xz |
tx_pool: revert #4592 and move bin2hex conversion to on_get_transaction_pool
Diffstat (limited to 'src/rpc/core_rpc_server.cpp')
-rw-r--r-- | src/rpc/core_rpc_server.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/rpc/core_rpc_server.cpp b/src/rpc/core_rpc_server.cpp index be511a2d2..f90b7f97c 100644 --- a/src/rpc/core_rpc_server.cpp +++ b/src/rpc/core_rpc_server.cpp @@ -924,6 +924,8 @@ namespace cryptonote return r; m_core.get_pool_transactions_and_spent_keys_info(res.transactions, res.spent_key_images, !request_has_rpc_origin || !m_restricted); + for (tx_info& txi : res.transactions) + txi.tx_blob = epee::string_tools::buff_to_hex_nodelimer(txi.tx_blob); res.status = CORE_RPC_STATUS_OK; return true; } |