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/cryptonote_core | |
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/cryptonote_core')
-rw-r--r-- | src/cryptonote_core/tx_pool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index c8b8a6786..c31a2073b 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -766,7 +766,7 @@ namespace cryptonote m_blockchain.for_all_txpool_txes([&tx_infos, key_image_infos, include_sensitive_data](const crypto::hash &txid, const txpool_tx_meta_t &meta, const cryptonote::blobdata *bd){ tx_info txi; txi.id_hash = epee::string_tools::pod_to_hex(txid); - txi.tx_blob = epee::string_tools::buff_to_hex_nodelimer(*bd); + txi.tx_blob = *bd; transaction tx; if (!parse_and_validate_tx_from_blob(*bd, tx)) { |