@@ -471,14 +471,28 @@ RPCConsole::RPCConsole(interfaces::Node& node, const PlatformStyle *_platformSty
471
471
472
472
constexpr QChar nonbreaking_hyphen (8209 );
473
473
const std::vector<QString> CONNECTION_TYPE_DOC{
474
+ // : Explanatory text for an inbound peer connection.
474
475
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. */
475
479
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. */
476
482
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. */
477
487
tr (" Outbound Manual: added using RPC %1 or %2/%3 configuration options" )
478
488
.arg (" addnode" )
479
489
.arg (QString (nonbreaking_hyphen) + " addnode" )
480
490
.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. */
481
493
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. */
482
496
tr (" Outbound Address Fetch: short-lived, for soliciting addresses" )};
483
497
const QString list{" <ul><li>" + Join (CONNECTION_TYPE_DOC, QString (" </li><li>" )) + " </li></ul>" };
484
498
ui->peerConnectionTypeLabel ->setToolTip (ui->peerConnectionTypeLabel ->toolTip ().arg (list));
0 commit comments