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
{
public:
static const int MIN_PEER_PROTO_VERSION = 70037;
static const int MIN_PEER_PROTO_VERSION = 70038;
// clients entries
std::vector<CDarkSendEntry> myEntries;

View File

@ -344,6 +344,10 @@ void BitcoinGUI::setClientModel(ClientModel *clientModel)
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,
// while the client has not yet fully loaded
createTrayIconMenu();

View File

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

View File

@ -25,7 +25,7 @@ extern const std::string CLIENT_DATE;
// 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
static const int INIT_PROTO_VERSION = 209;