File tree Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Expand file tree Collapse file tree 1 file changed +0
-3
lines changed Original file line number Diff line number Diff line change 7
7
8
8
#include < interfaces/handler.h>
9
9
#include < interfaces/node.h>
10
- #include < clientversion.h>
11
10
12
11
#include < memory>
13
12
@@ -27,7 +26,6 @@ class NodeModel : public QObject
27
26
{
28
27
Q_OBJECT
29
28
Q_PROPERTY (int blockTipHeight READ blockTipHeight NOTIFY blockTipHeightChanged)
30
- Q_PROPERTY (QString fullClientVersion READ fullClientVersion CONSTANT)
31
29
Q_PROPERTY (int numOutboundPeers READ numOutboundPeers NOTIFY numOutboundPeersChanged)
32
30
Q_PROPERTY (int maxNumOutboundPeers READ maxNumOutboundPeers CONSTANT)
33
31
Q_PROPERTY (int remainingSyncTime READ remainingSyncTime NOTIFY remainingSyncTimeChanged)
@@ -39,7 +37,6 @@ class NodeModel : public QObject
39
37
40
38
int blockTipHeight () const { return m_block_tip_height; }
41
39
void setBlockTipHeight (int new_height);
42
- QString fullClientVersion () const { return QString::fromStdString (FormatFullVersion ()); }
43
40
int numOutboundPeers () const { return m_num_outbound_peers; }
44
41
void setNumOutboundPeers (int new_num);
45
42
int maxNumOutboundPeers () const { return m_max_num_outbound_peers; }
You can’t perform that action at this time.
0 commit comments