mirror of
https://codeberg.org/anoncontributorxmr/monero.git
synced 2024-11-26 17:32:33 +00:00
tx_pool: set relayed flag on relay
This commit is contained in:
parent
0b93dd39db
commit
f3c374fe08
1 changed files with 3 additions and 0 deletions
|
@ -387,7 +387,10 @@ namespace cryptonote
|
||||||
{
|
{
|
||||||
auto i = m_transactions.find(it->first);
|
auto i = m_transactions.find(it->first);
|
||||||
if (i != m_transactions.end())
|
if (i != m_transactions.end())
|
||||||
|
{
|
||||||
|
i->second.relayed = true;
|
||||||
i->second.last_relayed_time = now;
|
i->second.last_relayed_time = now;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
//---------------------------------------------------------------------------------
|
//---------------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue