qt: Remove unused functions from BitcoinUnits

Remove two functions that are now unused.
This commit is contained in:
Wladimir J. van der Laan
2014-07-18 16:36:29 +02:00
parent 91cce1732b
commit 2a05101efd
2 changed files with 0 additions and 26 deletions

View File

@@ -80,28 +80,6 @@ qint64 BitcoinUnits::factor(int unit)
}
}
qint64 BitcoinUnits::maxAmount(int unit)
{
switch(unit)
{
case BTC: return Q_INT64_C(21000000);
case mBTC: return Q_INT64_C(21000000000);
case uBTC: return Q_INT64_C(21000000000000);
default: return 0;
}
}
int BitcoinUnits::amountDigits(int unit)
{
switch(unit)
{
case BTC: return 8; // 21,000,000 (# digits, without commas)
case mBTC: return 11; // 21,000,000,000
case uBTC: return 14; // 21,000,000,000,000
default: return 0;
}
}
int BitcoinUnits::decimals(int unit)
{
switch(unit)