Rename CClaimTrieCache to CClaimTrieUpdateBuffer #156

Closed
kaykurokawa wants to merge 276 commits from cclaimtriecache_change into master
2 changed files with 4 additions and 4 deletions
Showing only changes of commit d438e9f968 - Show all commits

View file

@ -7,7 +7,7 @@
#include "tinyformat.h"
const std::string CURRENCY_UNIT = "BTC";
const std::string CURRENCY_UNIT = "LBRY";
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("BTC");
case mBTC: return QString("mBTC");
case uBTC: return QString::fromUtf8("μBTC");
case BTC: return QString("LBRY");
case mBTC: return QString("mLBRY");
case uBTC: return QString::fromUtf8("μLBRY");
default: return QString("???");
}
}