Skip to content

Use LBTC instead of L-BTC in QT #1374

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Nov 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions src/qt/bitcoinunits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,10 @@ QString BitcoinUnits::longName(int unit)
}
switch(unit)
{
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)");
case BTC: return QString("LBTC");
case mBTC: return QString("mLBTC");
case uBTC: return QString::fromUtf8("μLBTC");
case SAT: return QString("Satoshi (Lsat)");
default: return QString("???");
}
}
Expand All @@ -75,8 +75,8 @@ QString BitcoinUnits::shortName(int unit)
}
switch(unit)
{
case uBTC: return QString::fromUtf8("L-bits");
case SAT: return QString("L-sat");
case uBTC: return QString::fromUtf8("Lbits");
case SAT: return QString("Lsat");
default: return longName(unit);
}
}
Expand Down