From e5ce519c589779193b0f858f6253dddfb132c11b Mon Sep 17 00:00:00 2001 From: Mike Milano Date: Thu, 24 May 2018 03:39:32 -0700 Subject: [PATCH] Missing Optional flag for hotwallet param The `hotwallet` parameter of `gateway-balances()` didn't seem like the type of parameter that needs to be required. I tested the API w/o it and it returned successfully. --- .../public-rippled-methods/account-methods/gateway_balances.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/references/rippled-api/public-rippled-methods/account-methods/gateway_balances.md b/content/references/rippled-api/public-rippled-methods/account-methods/gateway_balances.md index c97f83ada1..e1f05337f2 100644 --- a/content/references/rippled-api/public-rippled-methods/account-methods/gateway_balances.md +++ b/content/references/rippled-api/public-rippled-methods/account-methods/gateway_balances.md @@ -48,7 +48,7 @@ The request includes the following parameters: |:---------------|:---------------------------|:-------------------------------| | `account` | String | The [Address][] to check. This should be the [issuing address](issuing-and-operational-addresses.html) | | `strict` | Boolean | _(Optional)_ If true, only accept an address or public key for the account parameter. Defaults to false. | -| `hotwallet` | String or Array | An [operational address](issuing-and-operational-addresses.html) to exclude from the balances issued, or an array of such addresses. | +| `hotwallet` | String or Array | _(Optional)_ An [operational address](issuing-and-operational-addresses.html) to exclude from the balances issued, or an array of such addresses. | | `ledger_hash` | String | _(Optional)_ A 20-byte hex string for the ledger version to use. (See [Specifying Ledgers][]) | | `ledger_index` | String or Unsigned Integer | _(Optional)_ The sequence number of the ledger version to use, or a shortcut string to choose a ledger automatically. (See [Specifying Ledgers][]) |