summaryrefslogtreecommitdiff
path: root/core/api-common.rst
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-07-06 22:49:27 +0200
committerChristian Grothoff <christian@grothoff.org>2022-07-06 22:49:27 +0200
commit1c2a5409a96855440710b66c08b40945e37892c3 (patch)
tree4d69f34b9e4af84eaa384fd09a5d5f596140d723 /core/api-common.rst
parentf74f02c64d7ec515d37299b405ed06d166e28114 (diff)
downloaddocs-1c2a5409a96855440710b66c08b40945e37892c3.tar.gz
docs-1c2a5409a96855440710b66c08b40945e37892c3.tar.bz2
docs-1c2a5409a96855440710b66c08b40945e37892c3.zip
fix misc typos
Diffstat (limited to 'core/api-common.rst')
-rw-r--r--core/api-common.rst22
1 files changed, 21 insertions, 1 deletions
diff --git a/core/api-common.rst b/core/api-common.rst
index 2ceca5ea..d170c1d4 100644
--- a/core/api-common.rst
+++ b/core/api-common.rst
@@ -291,7 +291,7 @@ Timestamps are represented by the following structure:
.. ts:def:: RelativeTime
- interface Duration {
+ interface RelativeTime {
// Duration in microseconds or "forever"
// to represent an infinite duration. Numeric
// values are capped at 2^53 - 1 inclusive.
@@ -968,6 +968,26 @@ within the
struct TALER_AmountNBO closing_fee;
};
+.. _TALER_GlobalFeesPS:
+.. sourcecode:: c
+
+ struct TALER_MasterWireFeePS {
+ /**
+ * purpose.purpose = TALER_SIGNATURE_MASTER_GLOBAL_FEES
+ */
+ struct GNUNET_CRYPTO_EccSignaturePurpose purpose;
+ struct GNUNET_TIME_AbsoluteNBO start_date;
+ struct GNUNET_TIME_AbsoluteNBO end_date;
+ struct GNUNET_TIME_RelativeNBO purse_timeout;
+ struct GNUNET_TIME_RelativeNBO kyc_timeout;
+ struct GNUNET_TIME_RelativeNBO history_expiration;
+ struct TALER_AmountNBO history_fee;
+ struct TALER_AmountNBO kyc_fee;
+ struct TALER_AmountNBO account_fee;
+ struct TALER_AmountNBO purse_fee;
+ uint32_t purse_account_limit;
+ };
+
.. _TALER_DepositTrackPS:
.. sourcecode:: c