proto version

This commit is contained in:
Evan Duffield 2014-09-12 06:52:29 -07:00
parent e0ca47c535
commit 355c1d3eee
4 changed files with 11 additions and 7 deletions

View File

@ -234,7 +234,7 @@ public:
class CDarkSendPool class CDarkSendPool
{ {
public: public:
static const int MIN_PEER_PROTO_VERSION = 70037; static const int MIN_PEER_PROTO_VERSION = 70038;
// clients entries // clients entries
std::vector<CDarkSendEntry> myEntries; std::vector<CDarkSendEntry> myEntries;

View File

@ -344,6 +344,10 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel)
aboutAction->setIcon(QIcon(":/icons/toolbar_testnet")); aboutAction->setIcon(QIcon(":/icons/toolbar_testnet"));
} }
if(fMasterNode){
setWindowTitle(windowTitle() + QString(" ") + tr("[masternode]"));
}
// Create system tray menu (or setup the dock menu) that late to prevent users from calling actions, // Create system tray menu (or setup the dock menu) that late to prevent users from calling actions,
// while the client has not yet fully loaded // while the client has not yet fully loaded
createTrayIconMenu(); createTrayIconMenu();

View File

@ -195,7 +195,7 @@
<rect> <rect>
<x>10</x> <x>10</x>
<y>40</y> <y>40</y>
<width>290</width> <width>293</width>
<height>121</height> <height>121</height>
</rect> </rect>
</property> </property>
@ -212,7 +212,7 @@
<item row="0" column="0"> <item row="0" column="0">
<widget class="QLabel" name="label_6"> <widget class="QLabel" name="label_6">
<property name="text"> <property name="text">
<string>Status</string> <string>Status:</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -226,7 +226,7 @@
<item row="1" column="0"> <item row="1" column="0">
<widget class="QLabel" name="label_7"> <widget class="QLabel" name="label_7">
<property name="text"> <property name="text">
<string>Completion</string> <string>Completion:</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -246,7 +246,7 @@
<item row="2" column="0"> <item row="2" column="0">
<widget class="QLabel" name="labelAnonymizedText"> <widget class="QLabel" name="labelAnonymizedText">
<property name="text"> <property name="text">
<string>Anonymized</string> <string>Anonymized:</string>
</property> </property>
</widget> </widget>
</item> </item>
@ -266,7 +266,7 @@
<item row="3" column="0"> <item row="3" column="0">
<widget class="QLabel" name="label_8"> <widget class="QLabel" name="label_8">
<property name="text"> <property name="text">
<string>Amount and Rounds</string> <string>Amount and Rounds:</string>
</property> </property>
</widget> </widget>
</item> </item>

View File

@ -25,7 +25,7 @@ extern const std::string CLIENT_DATE;
// network protocol versioning // network protocol versioning
// //
static const int PROTOCOL_VERSION = 70037; static const int PROTOCOL_VERSION = 70038;
// intial proto version, to be increased after version/verack negotiation // intial proto version, to be increased after version/verack negotiation
static const int INIT_PROTO_VERSION = 209; static const int INIT_PROTO_VERSION = 209;