This addresses #32565 by removing user-facing runtime/help text references to markdown files under doc/ that are present in the source tree but are not shipped with Bitcoin Core binary releases.
The updated strings are in:
src/init.cppsrc/wallet/init.cppsrc/rpc/blockchain.cppsrc/rpc/mempool.cppsrc/rpc/output_script.cpp
The scope is intentionally narrow. It does not:
- change behavior
- ship documentation files
- add online documentation links
- refactor the help system
Testing:
git diff --check 52e8c1ce32a24d94b8fe06fa5e17bf8a176e50f0..HEADrg -n "doc/(policy/packages|design/assumeutxo|descriptors)\.md|github\.com/bitcoin/bitcoin/blob/master/doc/design/assumeutxo\.md" src/rpc src/init.cpp src/wallet/init.cpp
The grep returns no matches. No new tests were added, since this change only updates user-facing help text and does not modify behavior.