gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-docs] branch master updated: member was in wrong struct, moved to


From: gnunet
Subject: [taler-docs] branch master updated: member was in wrong struct, moved to correct place
Date: Sun, 06 Dec 2020 22:51:30 +0100

This is an automated email from the git hooks/post-receive script.

grothoff pushed a commit to branch master
in repository docs.

The following commit(s) were added to refs/heads/master by this push:
     new 9bfc10a  member was in wrong struct, moved to correct place
9bfc10a is described below

commit 9bfc10a1d164b8b234c10f557b785447eff7e915
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Sun Dec 6 22:51:28 2020 +0100

    member was in wrong struct, moved to correct place
---
 core/api-exchange.rst | 12 ++++++++----
 1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/core/api-exchange.rst b/core/api-exchange.rst
index 9b78d39..0043071 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.

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]