diff --git a/src/main.cpp b/src/main.cpp
index ede52f0..ae022fb 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -2214,6 +2214,7 @@ bool CBlock::AcceptBlock()
// check version
if (nVersion > CURRENT_VERSION)
return DoS(100, error("AcceptBlock() : reject unknown block version %d", nVersion));
+
// Check for duplicate
uint256 hash = GetHash();
if (mapBlockIndex.count(hash))
diff --git a/src/qt/curecoinunits.cpp b/src/qt/curecoinunits.cpp
index 452dadd..cca0aea 100644
--- a/src/qt/curecoinunits.cpp
+++ b/src/qt/curecoinunits.cpp
@@ -34,9 +34,9 @@ QString curecoinUnits::name(int unit)
{
switch(unit)
{
- case BTC: return QString("CUR");
- case mBTC: return QString("mCUR");
- case uBTC: return QString::fromUtf8("μCUR");
+ case BTC: return QString("CURE");
+ case mBTC: return QString("mCURE");
+ case uBTC: return QString::fromUtf8("μCURE");
default: return QString("???");
}
}
@@ -45,9 +45,9 @@ QString curecoinUnits::description(int unit)
{
switch(unit)
{
- case BTC: return QString("curecoins");
- case mBTC: return QString("Milli-curecoins (1 / 1,000)");
- case uBTC: return QString("Micro-curecoins (1 / 1,000,000)");
+ case BTC: return QString("Curecoins");
+ case mBTC: return QString("Milli-Curecoins (1 / 1,000)");
+ case uBTC: return QString("Micro-Curecoins (1 / 1,000,000)");
default: return QString("???");
}
}
diff --git a/src/qt/forms/overviewpage.ui b/src/qt/forms/overviewpage.ui
index a85a85b..ef996a4 100644
--- a/src/qt/forms/overviewpage.ui
+++ b/src/qt/forms/overviewpage.ui
@@ -105,7 +105,7 @@
Your current balance
- 0 CUR
+ 0 CURE
Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse
@@ -134,7 +134,7 @@
Total of coins that was staked, and do not yet count toward the current balance
- 0 CUR
+ 0 CURE
Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse
@@ -163,7 +163,7 @@
Total of transactions that have yet to be confirmed, and do not yet count toward the current balance
- 0 CUR
+ 0 CURE
Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse
@@ -189,7 +189,7 @@
Mined balance that has not yet matured
- 0 CUR
+ 0 CURE
Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse
diff --git a/src/qt/forms/sendcoinsdialog.ui b/src/qt/forms/sendcoinsdialog.ui
index 7cda233..e14ff54 100644
--- a/src/qt/forms/sendcoinsdialog.ui
+++ b/src/qt/forms/sendcoinsdialog.ui
@@ -55,7 +55,7 @@
0
0
666
- 145
+ 143
@@ -158,7 +158,7 @@
IBeamCursor
- 123.456 CUR
+ 123.456 CURE
Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse
diff --git a/src/version.cpp b/src/version.cpp
index 2305ad2..c5a215a 100644
--- a/src/version.cpp
+++ b/src/version.cpp
@@ -11,7 +11,7 @@
const std::string CLIENT_NAME("Curecoin");
// Client version number
-#define CLIENT_VERSION_SUFFIX "-CUR"
+#define CLIENT_VERSION_SUFFIX "-CURE"
// The following part of the code determines the CLIENT_BUILD variable.
diff --git a/src/version.h b/src/version.h
index 9028e68..dc86c1a 100644
--- a/src/version.h
+++ b/src/version.h
@@ -44,9 +44,9 @@ static const int BIP0031_VERSION = 60000;
// "mempool" command, enhanced "getdata" behavior starts with this version:
static const int MEMPOOL_GD_VERSION = 60002;
-#define DISPLAY_VERSION_MAJOR 1
-#define DISPLAY_VERSION_MINOR 9
-#define DISPLAY_VERSION_REVISION 4
+#define DISPLAY_VERSION_MAJOR 2
+#define DISPLAY_VERSION_MINOR 0
+#define DISPLAY_VERSION_REVISION 0
#define DISPLAY_VERSION_BUILD 1
#endif