diff options
| author | Alexander Blair <snipa@jagtech.io> | 2020-12-01 14:23:48 -0800 |
|---|---|---|
| committer | Alexander Blair <snipa@jagtech.io> | 2020-12-01 14:23:49 -0800 |
| commit | 4f401f6fca64a8ef6c9325d4c737c89bbb4c8091 (patch) | |
| tree | 8e5b98019d7a4abc1ed433c5e76810d10e3aa43f /src/cryptonote_core | |
| parent | 976fcb59859cc0ac0e965953974603dfd037c969 (diff) | |
| parent | b10878f1087aec914560781bde9e0e36bc682dfe (diff) | |
| download | monzero-core-4f401f6fca64a8ef6c9325d4c737c89bbb4c8091.tar.gz monzero-core-4f401f6fca64a8ef6c9325d4c737c89bbb4c8091.tar.xz monzero-core-4f401f6fca64a8ef6c9325d4c737c89bbb4c8091.zip | |
Merge pull request #7025
b10878f10 Change Dandelion++ fluff probability to 20%, and embargo timeout to 39s (Lee Clagett)
Diffstat (limited to 'src/cryptonote_core')
| -rw-r--r-- | src/cryptonote_core/tx_pool.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cryptonote_core/tx_pool.cpp b/src/cryptonote_core/tx_pool.cpp index 0db133b62..d059ab78f 100644 --- a/src/cryptonote_core/tx_pool.cpp +++ b/src/cryptonote_core/tx_pool.cpp @@ -75,11 +75,11 @@ namespace cryptonote not ideal since a blackhole is more likely to reveal earlier nodes in the chain. - This value was calculated with k=10, ep=0.10, and hop = 175 ms. A + This value was calculated with k=5, ep=0.10, and hop = 175 ms. A testrun from a recent Intel laptop took ~80ms to receive+parse+proces+send transaction. At least 50ms will be added to the latency if crossing an ocean. So 175ms is the fudge factor for - a single hop with 173s being the embargo timer. */ + a single hop with 39s being the embargo timer. */ constexpr const std::chrono::seconds dandelionpp_embargo_average{CRYPTONOTE_DANDELIONPP_EMBARGO_AVERAGE}; //TODO: constants such as these should at least be in the header, |
