commit e999d7f56b6846762fc602ffa003c2df70286260
parent 9252b1c83a926c8ea573740f4730659ba2e8409f
Author: Christian Grothoff <christian@grothoff.org>
Date: Mon, 9 Dec 2024 16:08:13 +0100
remove start times from periods, just causes trouble
Diffstat:
1 file changed, 0 insertions(+), 20 deletions(-)
diff --git a/core/api-merchant.rst b/core/api-merchant.rst
@@ -2697,12 +2697,6 @@ Creating orders
// across all configured tokens of a merchant.
token_family_slug: string;
- // Start of the validity period of the token. Based on this, the merchant
- // will select the relevant signing key. This value is rounded down
- // according to the configured rounding duration in the token family.
- // If not specified, the current time is used.
- valid_after?: Timestamp;
-
// How many units of the output are issued by the merchant.
// Defaults to 1 if not specified. Output with count == 0 are ignored by
// the merchant backend.
@@ -4587,10 +4581,6 @@ The contract terms must have the following structure:
// 'token_families' map on the order.
token_family_slug: string;
- // Start of the validity period of the token. This is used to find the
- // matching public key within the token family.
- valid_after: Timestamp;
-
// Number of tokens of this type required.
// Defaults to one if the field is not provided.
number?: Integer;
@@ -4610,10 +4600,6 @@ The contract terms must have the following structure:
// 'token_families' map on the top-level.
token_family_slug: string;
- // Start of the validity period of the token. This is used to find the
- // matching public key within the token family.
- valid_after: Timestamp;
-
// Number of tokens to be issued.
// Defaults to one if the field is not provided.
number?: Integer;
@@ -4657,9 +4643,6 @@ The contract terms must have the following structure:
// RSA public key.
rsa_pub: RsaPublicKey;
- // Start time of this key's validity period.
- valid_after: Timestamp;
-
// End time of this key's validity period.
valid_before: Timestamp;
}
@@ -4672,9 +4655,6 @@ The contract terms must have the following structure:
// CS public key.
cs_pub: Cs25519Point;
- // Start time of this key's validity period.
- valid_after: Timestamp;
-
// End time of this key's validity period.
valid_before: Timestamp;
}