From 4e29de719e6dc2a080f8a0c00cd137d3cd4dac96 Mon Sep 17 00:00:00 2001 From: Gregory Sanders Date: Thu, 28 May 2026 11:44:49 -0400 Subject: [PATCH] private broadcast: add release note for limited cap --- doc/release-notes-35406.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 doc/release-notes-35406.md diff --git a/doc/release-notes-35406.md b/doc/release-notes-35406.md new file mode 100644 index 00000000000..178a079132b --- /dev/null +++ b/doc/release-notes-35406.md @@ -0,0 +1,8 @@ +P2P and network changes +----------------------- + +- The private-broadcast queue (transactions submitted via `sendrawtransaction` +when `-privatebroadcast` is enabled and not yet echoed back from the network) +is now capped at 10,000 entries. When full, new submissions are rejected. It is +up to the caller to inspect the queue via `getprivatebroadcastinfo` and free +up space when stuck via `abortprivatebroadcast`. (#35406)