mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-23 11:23:26 +01:00
Merge pull request #796
d817aec
tx_pool: ensure no txes that fail check_inputs get in the block template (moneromooo-monero)
This commit is contained in:
commit
da277e17b5
@ -512,7 +512,7 @@ namespace cryptonote
|
|||||||
{
|
{
|
||||||
if(txd.max_used_block_height >= m_blockchain.get_current_blockchain_height())
|
if(txd.max_used_block_height >= m_blockchain.get_current_blockchain_height())
|
||||||
return false;
|
return false;
|
||||||
if(m_blockchain.get_block_id_by_height(txd.max_used_block_height) != txd.max_used_block_id)
|
if(true)
|
||||||
{
|
{
|
||||||
//if we already failed on this height and id, skip actual ring signature check
|
//if we already failed on this height and id, skip actual ring signature check
|
||||||
if(txd.last_failed_id == m_blockchain.get_block_id_by_height(txd.last_failed_height))
|
if(txd.last_failed_id == m_blockchain.get_block_id_by_height(txd.last_failed_height))
|
||||||
|
Loading…
Reference in New Issue
Block a user