diff options
author | Pieter Wuille <pieter@wuille.net> | 2020-09-23 17:00:46 -0700 |
---|---|---|
committer | Pieter Wuille <pieter@wuille.net> | 2020-10-12 12:14:53 -0700 |
commit | de11b0a4eff20da3e3ca52dc90948b5253d329c5 (patch) | |
tree | 62ffc21d451eab444a4635a110581d645902639b /doc | |
parent | 242d16477df1a024c7126bad23dde39cad217eca (diff) |
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 0000000000..ef26eb3032 --- /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 `-whitelist=relay@127.0.0.1`. |