Skip to content

Commit

Permalink
Litecoin: Rename mLTC/μLTC to lites/photons. (litecoin-project#375)
Browse files Browse the repository at this point in the history
  • Loading branch information
Charlie Lee authored and thrasher- committed Jan 19, 2018
1 parent 332efb2 commit a9275c8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/qt/bitcoinunits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ QString BitcoinUnits::name(int unit)
switch(unit)
{
case BTC: return QString("LTC");
case mBTC: return QString("mLTC");
case uBTC: return QString::fromUtf8("μLTC");
case mBTC: return QString("lites");
case uBTC: return QString("photons");
default: return QString("???");
}
}
Expand All @@ -52,8 +52,8 @@ QString BitcoinUnits::description(int unit)
switch(unit)
{
case BTC: return QString("Litecoins");
case mBTC: return QString("Milli-Litecoins (1 / 1" THIN_SP_UTF8 "000)");
case uBTC: return QString("Micro-Litecoins (1 / 1" THIN_SP_UTF8 "000" THIN_SP_UTF8 "000)");
case mBTC: return QString("Lites (1 / 1" THIN_SP_UTF8 "000)");
case uBTC: return QString("Photons (1 / 1" THIN_SP_UTF8 "000" THIN_SP_UTF8 "000)");
default: return QString("???");
}
}
Expand Down

0 comments on commit a9275c8

Please sign in to comment.