CUR to CURE abbriv. Major version bump

This commit is contained in:
EverGreenCoin 2017-10-27 20:28:17 -04:00
parent 78965bc349
commit b9147b43cd
6 changed files with 17 additions and 16 deletions

View File

@ -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))

View File

@ -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("???");
}
}

View File

@ -105,7 +105,7 @@
<string>Your current balance</string>
</property>
<property name="text">
<string notr="true">0 CUR</string>
<string notr="true">0 CURE</string>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
@ -134,7 +134,7 @@
<string>Total of coins that was staked, and do not yet count toward the current balance</string>
</property>
<property name="text">
<string notr="true">0 CUR</string>
<string notr="true">0 CURE</string>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
@ -163,7 +163,7 @@
<string>Total of transactions that have yet to be confirmed, and do not yet count toward the current balance</string>
</property>
<property name="text">
<string notr="true">0 CUR</string>
<string notr="true">0 CURE</string>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>
@ -189,7 +189,7 @@
<string>Mined balance that has not yet matured</string>
</property>
<property name="text">
<string notr="true">0 CUR</string>
<string notr="true">0 CURE</string>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>

View File

@ -55,7 +55,7 @@
<x>0</x>
<y>0</y>
<width>666</width>
<height>145</height>
<height>143</height>
</rect>
</property>
<layout class="QVBoxLayout" name="verticalLayout_2">
@ -158,7 +158,7 @@
<cursorShape>IBeamCursor</cursorShape>
</property>
<property name="text">
<string>123.456 CUR</string>
<string>123.456 CURE</string>
</property>
<property name="textInteractionFlags">
<set>Qt::LinksAccessibleByMouse|Qt::TextSelectableByKeyboard|Qt::TextSelectableByMouse</set>

View File

@ -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.

View File

@ -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