commit d8c437a1ef74e45937fdd86e3d5bdd5e25ee6243
parent 4d09c5b6b74ce4f022d8406d041bae257ccd0b35
Author: Christian Grothoff <grothoff@gnunet.org>
Date: Sun, 8 Oct 2023 11:19:39 +0200
-minor fixes
Diffstat:
1 file changed, 9 insertions(+), 9 deletions(-)
diff --git a/design-documents/051-fractional-digits.rst b/design-documents/051-fractional-digits.rst
@@ -118,7 +118,7 @@ section. The map could be given directly in JSON. For example:
.. code-block:: ini
[currency-euro]
- ENABLED = TRUE
+ ENABLED = YES
name = "Euro"
code = "EUR"
decimal_separator = ","
@@ -126,10 +126,10 @@ section. The map could be given directly in JSON. For example:
num_fractional_normal_digits = 2
num_fractional_trailing_zero_digits = 2
is_currency_name_leading = NO
- alt_unit_names = {0:"€"}
+ alt_unit_names = {"0":"€"}
[currency-japanese-yen]
- ENABLED = TRUE
+ ENABLED = YES
name = "Japanese Yen"
code = "JPY"
decimal_separator = "."
@@ -137,10 +137,10 @@ section. The map could be given directly in JSON. For example:
num_fractional_normal_digits = 0
num_fractional_trailing_zero_digits = 2
is_currency_name_leading = YES
- alt_unit_names = {0:"¥"}
+ alt_unit_names = {"0":"¥"}
[currency-bitcoin-mainnet]
- ENABLED = TRUE
+ ENABLED = NO
name = "Bitcoin (Mainnet)"
code = "BITCOINBTC"
decimal_separator = "."
@@ -148,10 +148,10 @@ section. The map could be given directly in JSON. For example:
num_fractional_normal_digits = 3
num_fractional_trailing_zero_digits = 0
is_currency_name_leading = NO
- alt_unit_names = {0:"BTC",-3:"mBTC"}
+ alt_unit_names = {"0":"BTC","-3":"mBTC"}
[currency-ethereum]
- ENABLED = TRUE
+ ENABLED = NO
name = "WAI-ETHER (Ethereum)"
code = "EthereumWAI"
decimal_separator = "."
@@ -159,7 +159,7 @@ section. The map could be given directly in JSON. For example:
num_fractional_normal_digits = 0
num_fractional_trailing_zero_digits = 0
is_currency_name_leading = NO
- alt_unit_names = {0:"WAI",3:"KWAI",6:"MWAI",9:"GWAI",12:"Szabo",15:"Finney",18:"Ether",21:"KEther",24:"MEther"}
+ alt_unit_names = {"0":"WAI","3":"KWAI","6":"MWAI","9":"GWAI","12":"Szabo","15":"Finney","18":"Ether","21":"KEther","24":"MEther"}
Implementation considerations
@@ -179,7 +179,7 @@ Definition of Done
DoD is not satisfied yet, a user-facing feature **must** be behind a feature
flag or dev-mode flag.)
- * Configuration (INI) format finalized and documented in taler.conf man page
+ * Configuration (INI) format finalized and documented in taler.conf man page [DONE]
* Endpoints of libeufin-bank, fakebank, exchange and merchant return the information
* SPAs use the information to render amounts
* Wallet-core passes rendering information to wallet UIs