Fix currency unit

This commit is contained in:
mkg20001 2017-04-29 12:17:27 +02:00 committed by Alex Grintsvayg
parent 32e73f4586
commit 30e941195a
2 changed files with 4 additions and 4 deletions

View file

@ -7,7 +7,7 @@
#include "tinyformat.h"
const std::string CURRENCY_UNIT = "LBRY";
const std::string CURRENCY_UNIT = "LBC";
CFeeRate::CFeeRate(const CAmount& nFeePaid, size_t nBytes_)
{

View file

@ -40,9 +40,9 @@ QString BitcoinUnits::name(int unit)
{
switch(unit)
{
case BTC: return QString("LBRY");
case mBTC: return QString("mLBRY");
case uBTC: return QString::fromUtf8("μLBRY");
case BTC: return QString("LBC");
case mBTC: return QString("mLBC");
case uBTC: return QString::fromUtf8("μLBC");
default: return QString("???");
}
}