aboutsummaryrefslogtreecommitdiff
path: root/src/qt/peertablemodel.h
diff options
context:
space:
mode:
authorrandymcmillan <randy.lee.mcmillan@gmail.com>2022-02-10 01:45:25 -0500
committerrandymcmillan <randy.lee.mcmillan@gmail.com>2022-03-16 04:54:52 -0400
commit209301a442512579d57f79c82417dc7c496248b6 (patch)
treeda6d243e4d780548635b7056d302eeba56bbce06 /src/qt/peertablemodel.h
parent127de22c5fb396e1670d2a911faf7a9adc9241e2 (diff)
downloadbitcoin-209301a442512579d57f79c82417dc7c496248b6.tar.xz
gui: add Age column to peers tab
Co-authored-by: Jon Atack <jon@atack.com>
Diffstat (limited to 'src/qt/peertablemodel.h')
-rw-r--r--src/qt/peertablemodel.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/qt/peertablemodel.h b/src/qt/peertablemodel.h
index 11064cdbfe..e2515de775 100644
--- a/src/qt/peertablemodel.h
+++ b/src/qt/peertablemodel.h
@@ -47,6 +47,7 @@ public:
enum ColumnIndex {
NetNodeId = 0,
+ Age,
Address,
Direction,
ConnectionType,
@@ -82,6 +83,9 @@ private:
/*: Title of Peers Table column which contains a
unique number used to identify a connection. */
tr("Peer"),
+ /*: Title of Peers Table column which indicates the duration (length of time)
+ since the peer connection started. */
+ tr("Age"),
/*: Title of Peers Table column which contains the
IP/Onion/I2P address of the connected peer. */
tr("Address"),