summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2024-02-08 16:42:28 +0100
committerChristian Grothoff <christian@grothoff.org>2024-02-08 16:42:28 +0100
commit8daac5d9293a6bb7ad80bd646cca211079234e38 (patch)
treeeeef4e2d5a0f24a10d5dadb4e40f4fbde4b11ed2 /core
parentab72f7349e965768ade45b5edd68c31d1cf8298a (diff)
downloaddocs-8daac5d9293a6bb7ad80bd646cca211079234e38.tar.gz
docs-8daac5d9293a6bb7ad80bd646cca211079234e38.tar.bz2
docs-8daac5d9293a6bb7ad80bd646cca211079234e38.zip
remove rewards, fix links
Diffstat (limited to 'core')
-rw-r--r--core/api-auditor.rst14
-rw-r--r--core/api-common.rst2
2 files changed, 8 insertions, 8 deletions
diff --git a/core/api-auditor.rst b/core/api-auditor.rst
index dcb39864..61e448b8 100644
--- a/core/api-auditor.rst
+++ b/core/api-auditor.rst
@@ -351,14 +351,14 @@ This API is used to obtain a list of all the balances that are stored by the aud
**Details:**
- .. ts:def:: Balances
+ .. ts:def:: BalanceList
interface BalanceList {
// Total amount reported
- auditor_total_reported_balance: taler_amount;
+ auditor_total_reported_balance: Amount;
// Amount potentially missing
- auditor_missing_balance: taler_amount;
+ auditor_missing_balance: Amount;
//...
}
@@ -402,16 +402,16 @@ This API is used by the auditor to obtain a list of pending denominations
interface PendingDenomination {
// Balance of denomination.
- denom_balance: taler_amount;
+ denom_balance: Amount;
// Amount that was lost due to failures by the exchange.
- denom_loss: taler_amount;
+ denom_loss: Amount;
// Amount at risk of loss due to recoup operations.
- denom_risk: taler_amount;
+ denom_risk: Amount;
// Amount actually lost due to recoup operations after a revocation.
- recoup_loss: taler_amount;
+ recoup_loss: Amount;
}
.. note::
diff --git a/core/api-common.rst b/core/api-common.rst
index 863d3099..5dc0c791 100644
--- a/core/api-common.rst
+++ b/core/api-common.rst
@@ -1043,7 +1043,7 @@ within the
};
-.. _TALER_DepositRequestPS:
+.. _taler_depositrequestps:
.. sourcecode:: c