commit 9bfc10a1d164b8b234c10f557b785447eff7e915
parent 6da702cb839b682d80d87fdcd88eb9ff16c189ae
Author: Christian Grothoff <christian@grothoff.org>
Date: Sun, 6 Dec 2020 22:51:28 +0100
member was in wrong struct, moved to correct place
Diffstat:
1 file changed, 8 insertions(+), 4 deletions(-)
diff --git 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.