electrum

Electrum Bitcoin wallet
git clone https://git.parazyd.org/electrum
Log | Files | Refs | Submodules

commit cf23127ac1990c57d75b9438b9a3cad0d7158e9a
parent b5a210fac3941298fdf9160948c2cc73c27bfccd
Author: Neil Booth <kyuupichan@gmail.com>
Date:   Wed, 25 Nov 2015 00:16:06 +0900

Preserve alphabetical ordering...

And 2 is the default anyway as for most western currencies.

Diffstat:
Mplugins/exchange_rate/exchange_rate.py | 7+------
1 file changed, 1 insertion(+), 6 deletions(-)

diff --git a/plugins/exchange_rate/exchange_rate.py b/plugins/exchange_rate/exchange_rate.py @@ -21,8 +21,7 @@ CCY_PRECISIONS = {'BHD': 3, 'BIF': 0, 'BYR': 0, 'CLF': 4, 'CLP': 0, 'JOD': 3, 'JPY': 0, 'KMF': 0, 'KRW': 0, 'KWD': 3, 'LYD': 3, 'MGA': 1, 'MRO': 1, 'OMR': 3, 'PYG': 0, 'RWF': 0, 'TND': 3, 'UGX': 0, 'UYI': 0, 'VND': 0, - 'VUV': 0, 'XAF': 0, 'XAG': 2, 'XAU': 4, 'XOF': 0, - 'XPF': 0, 'MXN': 2} + 'VUV': 0, 'XAF': 0, 'XAU': 4, 'XOF': 0, 'XPF': 0} class ExchangeBase(PrintError): @@ -367,7 +366,3 @@ class FxPlugin(BasePlugin, ThreadJob): for amount in [value, balance]: text = self.historical_value_str(amount, date) entry.append(text) - - - -