Skip to content

Commit

Permalink
fix QT UI to allow sending more than 99m coins
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Mar 30, 2014
1 parent b20ccfc commit f6085d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/qt/bitcoinunits.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ 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 12; // 21,000,000,000,000
case BTC: return 12; // 134 000 000 000
case mBTC: return 16; // 134 000 000 000. 0000
case uBTC: return 18; // 134 000 000 000. 000000
default: return 0;
}
}
Expand Down

0 comments on commit f6085d3

Please sign in to comment.