mirror of
https://github.com/monero-project/monero.git
synced 2026-01-12 13:05:22 -08:00
low risk, potentially varint overflow bug patched thanks to BBR
This commit is contained in:
committed by
Thomas Winget
parent
5cd77a9f0b
commit
4e2b2b942d
@@ -59,9 +59,9 @@ namespace cryptonote
|
||||
|
||||
}
|
||||
//---------------------------------------------------------------------------------
|
||||
bool tx_memory_pool::add_tx(const transaction &tx, /*const crypto::hash& tx_prefix_hash,*/ const crypto::hash &id, size_t blob_size, tx_verification_context& tvc, bool kept_by_block)
|
||||
bool tx_memory_pool::add_tx(const transaction &tx, const crypto::hash &id, tx_verification_context& tvc, bool kept_by_block)
|
||||
{
|
||||
|
||||
size_t blob_size = get_object_blobsize(tx);
|
||||
|
||||
if(!check_inputs_types_supported(tx))
|
||||
{
|
||||
@@ -179,9 +179,8 @@ namespace cryptonote
|
||||
bool tx_memory_pool::add_tx(const transaction &tx, tx_verification_context& tvc, bool keeped_by_block)
|
||||
{
|
||||
crypto::hash h = null_hash;
|
||||
size_t blob_size = 0;
|
||||
get_transaction_hash(tx, h, blob_size);
|
||||
return add_tx(tx, h, blob_size, tvc, keeped_by_block);
|
||||
get_transaction_hash(tx, h);
|
||||
return add_tx(tx, h, tvc, keeped_by_block);
|
||||
}
|
||||
//---------------------------------------------------------------------------------
|
||||
bool tx_memory_pool::remove_transaction_keyimages(const transaction& tx)
|
||||
|
||||
Reference in New Issue
Block a user