GUI: Add "L-" prefix to Bitcoin units

This commit is contained in:
Luke Dashjr 2019-01-24 05:11:33 +00:00 committed by Gregory Sanders
parent 6879be7036
commit 9ee46291d5

View file

@ -42,10 +42,10 @@ QString BitcoinUnits::longName(int unit)
{
switch(unit)
{
case BTC: return QString("BTC");
case mBTC: return QString("mBTC");
case uBTC: return QString::fromUtf8("µBTC (bits)");
case SAT: return QString("Satoshi (sat)");
case BTC: return QString("L-BTC");
case mBTC: return QString("mL-BTC");
case uBTC: return QString::fromUtf8("μL-BTC");
case SAT: return QString("Satoshi (L-sat)");
default: return QString("???");
}
}