summaryrefslogtreecommitdiff
path: root/core/api-exchange.rst
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2020-12-06 22:51:28 +0100
committerChristian Grothoff <christian@grothoff.org>2020-12-06 22:51:28 +0100
commit9bfc10a1d164b8b234c10f557b785447eff7e915 (patch)
tree49fd2483a0f7e7cdc017ccd7438cc21d3dd851c8 /core/api-exchange.rst
parent6da702cb839b682d80d87fdcd88eb9ff16c189ae (diff)
downloaddocs-9bfc10a1d164b8b234c10f557b785447eff7e915.tar.gz
docs-9bfc10a1d164b8b234c10f557b785447eff7e915.tar.bz2
docs-9bfc10a1d164b8b234c10f557b785447eff7e915.zip
member was in wrong struct, moved to correct place
Diffstat (limited to 'core/api-exchange.rst')
-rw-r--r--core/api-exchange.rst12
1 files changed, 8 insertions, 4 deletions
diff --git a/core/api-exchange.rst b/core/api-exchange.rst
index 9b78d399..00430719 100644
--- a/core/api-exchange.rst
+++ b/core/api-exchange.rst
@@ -378,9 +378,6 @@ Management operations authorized by master key
interface FutureKeysResponse {
- // Name in the configuration file that defines this denomination.
- section_name: string;
-
// Future denominations to be offered by this exchange
// (only those lacking a master signature).
future_denoms: FutureDenom[];
@@ -403,16 +400,23 @@ Management operations authorized by master key
.. ts:def:: FutureDenom
interface FutureDenom {
+ // Name in the configuration file that defines this denomination.
+ section_name: string;
+
// How much are coins of this denomination worth?
value: Amount;
// When does the denomination key become valid?
stamp_start: Timestamp;
- // When is it no longer possible to deposit coins
+ // When is it no longer possible to withdraw coins
// of this denomination?
stamp_expire_withdraw: Timestamp;
+ // When is it no longer possible to deposit coins
+ // of this denomination?
+ stamp_expire_deposit: Timestamp;
+
// Timestamp indicating by when legal disputes relating to these coins must
// be settled, as the exchange will afterwards destroy its evidence relating to
// transactions involving this coin.