From 9bfc10a1d164b8b234c10f557b785447eff7e915 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Sun, 6 Dec 2020 22:51:28 +0100 Subject: member was in wrong struct, moved to correct place --- core/api-exchange.rst | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) (limited to 'core/api-exchange.rst') 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. -- cgit v1.2.3