suggestion to improve, tighten this up, and remove "Note that" and "NOTE:" while grouping together those two messages and keeping the related RPCs sentence at the end
+++ b/src/rpc/rawtransaction.cpp
@@ -816,12 +816,11 @@ static RPCHelpMan sendrawtransaction()
{
return RPCHelpMan{"sendrawtransaction",
"\nSubmit a raw transaction (serialized, hex-encoded) to local node and network.\n"
- "\nNote that the transaction will be sent unconditionally to all peers, so using this\n"
+ "\nThe transaction will be sent unconditionally to all peers, so using sendrawtransaction\n"
"for manual rebroadcast may degrade privacy by leaking the transaction's origin, as\n"
"nodes will normally not rebroadcast non-wallet transactions already in their mempool.\n"
- "\nAlso see createrawtransaction and signrawtransactionwithkey calls.\n"
- "\nNOTE: an RPC_TRANSACTION_ALREADY_IN_CHAIN exception will be raised if you are\n"
- "attempting to send a transaction that already exists in a block.\n",
+ "\nRPC_TRANSACTION_ALREADY_IN_CHAIN will be raised if the transaction already exists in a block.\n"
+ "\nRelated RPCs: createrawtransaction, signrawtransactionwithkey\n",