summaryrefslogtreecommitdiff
path: root/design-documents
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2023-10-08 11:19:39 +0200
committerChristian Grothoff <grothoff@gnunet.org>2023-10-08 11:19:39 +0200
commitd8c437a1ef74e45937fdd86e3d5bdd5e25ee6243 (patch)
treec780a9d53d680c2c053aba1df4bcd896c5df3697 /design-documents
parent4d09c5b6b74ce4f022d8406d041bae257ccd0b35 (diff)
downloaddocs-d8c437a1ef74e45937fdd86e3d5bdd5e25ee6243.tar.gz
docs-d8c437a1ef74e45937fdd86e3d5bdd5e25ee6243.tar.bz2
docs-d8c437a1ef74e45937fdd86e3d5bdd5e25ee6243.zip
-minor fixes
Diffstat (limited to 'design-documents')
-rw-r--r--design-documents/051-fractional-digits.rst18
1 files changed, 9 insertions, 9 deletions
diff --git a/design-documents/051-fractional-digits.rst b/design-documents/051-fractional-digits.rst
index 7126c6c2..15784a85 100644
--- 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