Merge pull request #6146

70c9cd3c Change to Tx diffusion (Dandelion++ fluff) instead of flooding (Lee Clagett)
This commit is contained in:
Alexander Blair 2020-01-24 20:06:34 -08:00
commit d1b08c00cf
No known key found for this signature in database
GPG key ID: C64552D877C32479
15 changed files with 280 additions and 97 deletions

View file

@ -517,7 +517,7 @@ public:
, m_events(events)
, m_validator(validator)
, m_ev_index(0)
, m_tx_relay(cryptonote::relay_method::flood)
, m_tx_relay(cryptonote::relay_method::fluff)
{
}
@ -550,7 +550,7 @@ public:
}
else
{
m_tx_relay = cryptonote::relay_method::flood;
m_tx_relay = cryptonote::relay_method::fluff;
}
return true;