Litecoin: Rename mLTC/μLTC to lites/photons. (#375)

This commit is contained in:
Charlie Lee 2017-08-21 22:05:33 -07:00 committed by Adrian Gallagher
parent 332efb2469
commit a9275c8d10
No known key found for this signature in database
GPG Key ID: FE3348877809386C

View File

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