Merge pull request #333
5d304ca
Fix loop bug when calling core::get_block_template, causing calling thread to lock up. (NoodleDoodleNoodleDoodleNoodleDoodleNoo)
This commit is contained in:
commit
10e50a4da8
1 changed files with 9 additions and 0 deletions
|
@ -503,7 +503,10 @@ namespace cryptonote
|
|||
|
||||
// Can not exceed maximum block size
|
||||
if (max_total_size < total_size + tx_it->second.blob_size)
|
||||
{
|
||||
sorted_it++;
|
||||
continue;
|
||||
}
|
||||
|
||||
// If adding this tx will make the block size
|
||||
// greater than CRYPTONOTE_GETBLOCKTEMPLATE_MAX
|
||||
|
@ -511,7 +514,10 @@ namespace cryptonote
|
|||
// keep block sizes from becoming too unwieldly
|
||||
// to propagate at 60s block times.
|
||||
if ( (total_size + tx_it->second.blob_size) > CRYPTONOTE_GETBLOCKTEMPLATE_MAX_BLOCK_SIZE )
|
||||
{
|
||||
sorted_it++;
|
||||
continue;
|
||||
}
|
||||
|
||||
// If we've exceeded the penalty free size,
|
||||
// stop including more tx
|
||||
|
@ -522,7 +528,10 @@ namespace cryptonote
|
|||
// included into the blockchain or that are
|
||||
// missing key images
|
||||
if (!is_transaction_ready_to_go(tx_it->second) || have_key_images(k_images, tx_it->second.tx))
|
||||
{
|
||||
sorted_it++;
|
||||
continue;
|
||||
}
|
||||
|
||||
bl.tx_hashes.push_back(tx_it->first);
|
||||
total_size += tx_it->second.blob_size;
|
||||
|
|
Loading…
Reference in a new issue