hacktober fest #214

Closed
Z3N00 wants to merge 304 commits from zeno into master
2 changed files with 4 additions and 4 deletions
Showing only changes of commit 30e941195a - Show all commits

View file

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

View file

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