diff options
author | vhf / victor felder <victorfelder@gmail.com> | 2013-05-22 01:19:18 +0300 |
---|---|---|
committer | Victor Felder <victorfelder@gmail.com> | 2013-06-02 14:44:55 +0200 |
commit | a35e268da44a1606af2fc18169f715e7eda8fb7c (patch) | |
tree | 161167fdfbc6ff50629166229ccf942448ff94b0 /src/qt/bitcoinunits.h | |
parent | 3702f127fdcd9dd6787112a05c11b80607367b39 (diff) |
Too many bitcoins allowed in amount. (#2401)
Using magic number doesn't seem right. Could we factor this out, together with https://github.com/bitcoin/bitcoin/blob/master/src/bitcoinrpc.cpp#L96 ?
And what about BitcoinUnits::parse() as well ?
Diffstat (limited to 'src/qt/bitcoinunits.h')
-rw-r--r-- | src/qt/bitcoinunits.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/qt/bitcoinunits.h b/src/qt/bitcoinunits.h index 6e96cef59d..f6fdf6c7be 100644 --- a/src/qt/bitcoinunits.h +++ b/src/qt/bitcoinunits.h @@ -38,6 +38,8 @@ public: static QString description(int unit); //! Number of Satoshis (1e-8) per unit static qint64 factor(int unit); + //! Max amount per unit + static qint64 maxAmount(int unit); //! Number of amount digits (to represent max number of coins) static int amountDigits(int unit); //! Number of decimals left |