rpc: remove last usage of txs_as_hex

This commit is contained in:
selsta
2026-04-24 23:55:58 +02:00
parent 87eed2c294
commit dca8e339bc
2 changed files with 13 additions and 15 deletions
+12 -15
View File
@@ -1006,23 +1006,20 @@ bool t_rpc_command_executor::print_transaction(crypto::hash transaction_hash,
}
}
if (1 == res.txs.size() || 1 == res.txs_as_hex.size())
if (1 == res.txs.size())
{
if (1 == res.txs.size())
{
// only available for new style answers
static const std::string empty_hash = epee::string_tools::pod_to_hex(crypto::cn_fast_hash("", 0));
// prunable_hash will equal empty_hash when nothing is prunable (mostly when the transaction is coinbase)
bool pruned = res.txs.front().prunable_as_hex.empty() && res.txs.front().prunable_hash != epee::string_tools::pod_to_hex(crypto::null_hash) && res.txs.front().prunable_hash != empty_hash;
if (res.txs.front().in_pool)
tools::success_msg_writer() << "Found in pool";
else
tools::success_msg_writer() << "Found in blockchain at height " << res.txs.front().block_height << (pruned ? " (pruned)" : "");
}
// only available for new style answers
static const std::string empty_hash = epee::string_tools::pod_to_hex(crypto::cn_fast_hash("", 0));
// prunable_hash will equal empty_hash when nothing is prunable (mostly when the transaction is coinbase)
bool pruned = res.txs.front().prunable_as_hex.empty() && res.txs.front().prunable_hash != epee::string_tools::pod_to_hex(crypto::null_hash) && res.txs.front().prunable_hash != empty_hash;
if (res.txs.front().in_pool)
tools::success_msg_writer() << "Found in pool";
else
tools::success_msg_writer() << "Found in blockchain at height " << res.txs.front().block_height << (pruned ? " (pruned)" : "");
const std::string &as_hex = (1 == res.txs.size()) ? res.txs.front().as_hex : res.txs_as_hex.front();
const std::string &pruned_as_hex = (1 == res.txs.size()) ? res.txs.front().pruned_as_hex : "";
const std::string &prunable_as_hex = (1 == res.txs.size()) ? res.txs.front().prunable_as_hex : "";
const std::string &as_hex = res.txs.front().as_hex;
const std::string &pruned_as_hex = res.txs.front().pruned_as_hex;
const std::string &prunable_as_hex = res.txs.front().prunable_as_hex;
// Print metadata if requested
if (include_metadata)
{
+1
View File
@@ -418,6 +418,7 @@ inline const std::string get_rpc_status(const bool trusted_daemon, const std::st
struct response_t: public rpc_access_response_base
{
// older compatibility stuff
// TODO: remove after FCMP++ hf
std::vector<std::string> txs_as_hex; //transactions blobs as hex (old compat)
std::vector<std::string> txs_as_json; //transactions decoded as json (old compat)