commit 5d1075a80f6cdbaf7f6210a0348be0b6cdfcefc9
parent 1611fa3ec402e7a42da736fdcc991075471a9310
Author: Sebastian <sebasjm@gmail.com>
Date: Fri, 3 Nov 2023 16:50:34 -0300
update from dd51: no decimal and currency leading anymore
Diffstat:
1 file changed, 0 insertions(+), 7 deletions(-)
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
@@ -96,9 +96,6 @@ possibly by using HTTPS.
// Name of the currency.
name: string;
- // Decimal separator for fractional digits.
- decimal_separator: string;
-
// how many digits the user may enter after the decimal_separator
num_fractional_input_digits: Integer;
@@ -109,10 +106,6 @@ possibly by using HTTPS.
// padding with zeros.
num_fractional_trailing_zero_digits: Integer;
- // Whether the currency name should be rendered before (true) or
- // after (false) the numeric value
- is_currency_name_leading: boolean;
-
// map of powers of 10 to alternative currency names / symbols, must
// always have an entry under "0" that defines the base name,
// e.g. "0 => €" or "3 => k€". For BTC, would be "0 => BTC, -3 => mBTC".