diff options
| author | Pieter Wuille <[email protected]> | 2020-09-23 17:00:46 -0700 |
|---|---|---|
| committer | Pieter Wuille <[email protected]> | 2020-10-12 12:14:53 -0700 |
| commit | de11b0a4eff20da3e3ca52dc90948b5253d329c5 (patch) | |
| tree | 62ffc21d451eab444a4635a110581d645902639b /doc | |
| parent | Change transaction request logic to use txrequest (diff) | |
| download | discoin-de11b0a4eff20da3e3ca52dc90948b5253d329c5.tar.xz discoin-de11b0a4eff20da3e3ca52dc90948b5253d329c5.zip | |
Reduce MAX_PEER_TX_ANNOUNCEMENTS for non-PF_RELAY peers
Maintaining up to 100000 INVs per peer is excessive, as that is far more
than fits in a typical mempool.
Also disable the "overload" penalty for PF_RELAY peers.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/release-notes-19988.md | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/release-notes-19988.md b/doc/release-notes-19988.md new file mode 100644 index 000000000..ef26eb303 --- /dev/null +++ b/doc/release-notes-19988.md @@ -0,0 +1,9 @@ +P2P changes +----------- + +The size of the set of transactions that peers have announced and we consider +for requests has been reduced from 100000 to 5000 (per peer), and further +announcements will be ignored when that limit is reached. If you need to +dump (very) large batches of transactions, exceptions can be made for trusted +peers using the "relay" network permission. For localhost for example it can +be enabled using the command line option `[email protected]`. |