Merge pull request #6974

58cde83 Switch to Dandelion++ fluff mode if no out connections for stem mode (vtnerd)
This commit is contained in:
luigi1111 2020-11-04 10:40:49 -06:00
commit 01606ee52e
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
2 changed files with 113 additions and 6 deletions

View file

@ -511,12 +511,7 @@ namespace levin
if (!zone_ || !core_ || txs_.empty())
return;
if (zone_->fluffing)
{
core_->on_transactions_relayed(epee::to_span(txs_), relay_method::fluff);
fluff_notify::run(std::move(zone_), epee::to_span(txs_), source_);
}
else // forward tx in stem
if (!zone_->fluffing)
{
core_->on_transactions_relayed(epee::to_span(txs_), relay_method::stem);
for (int tries = 2; 0 < tries; tries--)
@ -536,6 +531,9 @@ namespace levin
MERROR("Unable to send transaction(s) via Dandelion++ stem");
}
core_->on_transactions_relayed(epee::to_span(txs_), relay_method::fluff);
fluff_notify::run(std::move(zone_), epee::to_span(txs_), source_);
}
};