mirror of
https://github.com/monero-project/monero.git
synced 2024-10-01 11:49:47 -04:00
rpc: fix get_transactions getting v1 txes from the txpool
It would try to get their prunable hash, but v1 txes don't have one
This commit is contained in:
parent
fd0cf689dd
commit
14881094af
@ -583,7 +583,8 @@ namespace cryptonote
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
const cryptonote::blobdata pruned = ss.str();
|
const cryptonote::blobdata pruned = ss.str();
|
||||||
sorted_txs.push_back(std::make_tuple(h, pruned, get_transaction_prunable_hash(tx), std::string(i->tx_blob, pruned.size())));
|
const crypto::hash prunable_hash = tx.version == 1 ? crypto::null_hash : get_transaction_prunable_hash(tx);
|
||||||
|
sorted_txs.push_back(std::make_tuple(h, pruned, prunable_hash, std::string(i->tx_blob, pruned.size())));
|
||||||
missed_txs.erase(std::find(missed_txs.begin(), missed_txs.end(), h));
|
missed_txs.erase(std::find(missed_txs.begin(), missed_txs.end(), h));
|
||||||
pool_tx_hashes.insert(h);
|
pool_tx_hashes.insert(h);
|
||||||
const std::string hash_string = epee::string_tools::pod_to_hex(h);
|
const std::string hash_string = epee::string_tools::pod_to_hex(h);
|
||||||
|
Loading…
Reference in New Issue
Block a user