diff --git a/src/darksend.h b/src/darksend.h index 60fc2d9577..721cb4ab02 100644 --- a/src/darksend.h +++ b/src/darksend.h @@ -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 myEntries; diff --git a/src/qt/bitcoingui.cpp b/src/qt/bitcoingui.cpp index 96c5a5c572..b14fa017fa 100644 --- a/src/qt/bitcoingui.cpp +++ b/src/qt/bitcoingui.cpp @@ -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(); diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui index f21f023441..8d1df1c0c7 100644 --- a/src/qt/forms/overviewpage.ui +++ b/src/qt/forms/overviewpage.ui @@ -195,7 +195,7 @@ 10 40 - 290 + 293 121 @@ -212,7 +212,7 @@ - Status + Status: @@ -226,7 +226,7 @@ - Completion + Completion: @@ -246,7 +246,7 @@ - Anonymized + Anonymized: @@ -266,7 +266,7 @@ - Amount and Rounds + Amount and Rounds: diff --git a/src/version.h b/src/version.h index 9c343030ac..9016a6312b 100644 --- a/src/version.h +++ b/src/version.h @@ -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;