From ea558effea8225bd3605b17bac0bf8a8a3c34bee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Silkj=C3=A6r?= Date: Tue, 18 Nov 2025 09:56:13 +0100 Subject: [PATCH] Update src/content/docs/docs/protocol-reference/transactions/transaction-types/checkcash.mdx Co-authored-by: tequ --- .../transactions/transaction-types/checkcash.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/docs/protocol-reference/transactions/transaction-types/checkcash.mdx b/src/content/docs/docs/protocol-reference/transactions/transaction-types/checkcash.mdx index 611f14b..26c375c 100644 --- a/src/content/docs/docs/protocol-reference/transactions/transaction-types/checkcash.mdx +++ b/src/content/docs/docs/protocol-reference/transactions/transaction-types/checkcash.mdx @@ -23,7 +23,7 @@ _(Added by the \[Checks amendment]\[].)_ | Field | JSON Type | \[Internal Type]\[] | Description | | ------------ | ---------------------------------------------------------------------------------------------------------------------------------- | ------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `CheckID` | String | Hash256 | The ID of the Check ledger object to cash, as a 64-character hexadecimal string. | -| `Amount` | [Currency Amount](/docs/protocol-reference/data-types/currency-formats/#specifying-currency-amounts) | Amount | _(Optional)_ Redeem the Check for exactly this amount, if possible. The currency must match that of the `SendMax` of the corresponding CheckCreate transaction. You must provide either this field or `DeliverMin`. | +| `Amount` | [Currency Amount](/docs/protocol-reference/data-types/currency-formats#specifying-currency-amounts) | Amount | _(Optional)_ Redeem the Check for exactly this amount, if possible. The currency must match that of the `SendMax` of the corresponding CheckCreate transaction. You must provide either this field or `DeliverMin`. | | `DeliverMin` | \[Currency Amount]\[] | Amount | _(Optional)_ Redeem the Check for at least this amount and for as much as possible. The currency must match that of the `SendMax` of the corresponding CheckCreate transaction. You must provide either this field or `Amount`. | The transaction _**must**_ include either `Amount` or `DeliverMin`, but not both.