mirror of
https://github.com/bitcoin/bitcoin.git
synced 2026-09-12 05:32:22 +02:00
Rather than rebroadcasting forever, bound attempts at private broadcast, report remaining attempts over RPC results, and allow exhausted transactions to be retried when submitted.
14 lines
500 B
Markdown
14 lines
500 B
Markdown
P2P and network changes
|
|
-----------------------
|
|
|
|
- Each transaction sent via private broadcast (`-privatebroadcast`) is limited
|
|
to 1,000 send attempts. After reaching the limit, broadcasting stops; call
|
|
`sendrawtransaction` again to retry. Transactions that reach the limit remain
|
|
available through `getprivatebroadcastinfo` and `abortprivatebroadcast`. (#35680)
|
|
|
|
Updated RPCs
|
|
------------
|
|
|
|
- `getprivatebroadcastinfo` now reports an `attempts_remaining` field for each
|
|
transaction. (#35680)
|