@@ -471,14 +471,28 @@ RPCConsole::RPCConsole(interfaces::Node& node, const PlatformStyle *_platformSty
471471
472472 constexpr QChar nonbreaking_hyphen (8209 );
473473 const std::vector<QString> CONNECTION_TYPE_DOC{
474+ // : Explanatory text for an inbound peer connection.
474475 tr (" Inbound: initiated by peer" ),
476+ /* : Explanatory text for an outbound peer connection that
477+ relays all network information. This is the default behavior for
478+ Outbound connections. */
475479 tr (" Outbound Full Relay: default" ),
480+ /* : Explanatory text for an outbound peer connection that relays
481+ network information about blocks and not transactions or addresses. */
476482 tr (" Outbound Block Relay: does not relay transactions or addresses" ),
483+ /* : Explanatory text for an outbound peer connection that was
484+ established manually through one of several methods. The numbered
485+ arguments are stand-ins for the methods available to establish
486+ manual connections. */
477487 tr (" Outbound Manual: added using RPC %1 or %2/%3 configuration options" )
478488 .arg (" addnode" )
479489 .arg (QString (nonbreaking_hyphen) + " addnode" )
480490 .arg (QString (nonbreaking_hyphen) + " connect" ),
491+ /* : Explanatory text for a temporary outbound peer connection that
492+ is used to test the validity of known addresses. */
481493 tr (" Outbound Feeler: short-lived, for testing addresses" ),
494+ /* : Explanatory text for a temporary outbound peer connection that is used
495+ to request addresses from a peer. */
482496 tr (" Outbound Address Fetch: short-lived, for soliciting addresses" )};
483497 const QString list{" <ul><li>" + Join (CONNECTION_TYPE_DOC, QString (" </li><li>" )) + " </li></ul>" };
484498 ui->peerConnectionTypeLabel ->setToolTip (ui->peerConnectionTypeLabel ->toolTip ().arg (list));
0 commit comments