Skip to content

Commit

Permalink
GUI: Add "L-" prefix to Bitcoin units
Browse files Browse the repository at this point in the history
  • Loading branch information
luke-jr authored and instagibbs committed Apr 10, 2019
1 parent 6879be7 commit 9ee4629
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 @@ -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("???");
}
}
Expand Down

0 comments on commit 9ee4629

Please sign in to comment.