diff --git a/content/concept-amendments.md b/content/concept-amendments.md index 14eec7398f..f942975cd8 100644 --- a/content/concept-amendments.md +++ b/content/concept-amendments.md @@ -112,7 +112,7 @@ One of the first signs that your `rippled` server is amendment blocked is an `am } ``` -The following `rippled` error also indicates that your server is amendment blocked: +The following `rippled` log message also indicates that your server is amendment blocked: ``` 2018-Feb-12 19:38:30 LedgerMaster:ERR One or more unsupported amendments activated: server blocked. diff --git a/content/rippled-api-methods/server_info.md b/content/rippled-api-methods/server_info.md index 8a41286075..bccb07cada 100644 --- a/content/rippled-api-methods/server_info.md +++ b/content/rippled-api-methods/server_info.md @@ -280,7 +280,7 @@ The `info` object may have some arrangement of the following fields: | `Field` | Type | Description | |:------------------------------------|:--------------------------|:-----------| -| `amendment_blocked` | Boolean | If the server is [amendment blocked](concept-amendments.html#amendment-blocked), this field displays and is set to `true`. If the server is older than 0.80.0, this field does not display even if the server is amendment blocked. If the server is not amendment blocked, this field does not display. | +| `amendment_blocked` | Boolean | _(May be omitted)_ If `true`, this server is [amendment blocked](concept-amendments.html#amendment-blocked). If the server is not amendment blocked, the response omits this field. [New in: rippled 0.80.0][] | | `build_version` | String | The version number of the running `rippled` version. | | `closed_ledger` | Object | (May be omitted) Information on the most recently closed ledger that has not been validated by consensus. If the most recently validated ledger is available, the response omits this field and includes `validated_ledger` instead. The member fields are the same as the `validated_ledger` field. | | `complete_ledgers` | String | Range expression indicating the sequence numbers of the ledger versions the local rippled has in its database. This may be a disjoint sequence, for example `24900901-24900984,24901116-24901158`. | diff --git a/content/rippled-api-methods/server_state.md b/content/rippled-api-methods/server_state.md index 8a333bc5d8..41e1fe3bba 100644 --- a/content/rippled-api-methods/server_state.md +++ b/content/rippled-api-methods/server_state.md @@ -250,7 +250,7 @@ The `state` object may have some arrangement of the following fields: | `Field` | Type | Description | |:---------------------------------|:-----------------|:-----------------------| -| `amendment_blocked` | Boolean | If the server is [amendment blocked](concept-amendments.html#amendment-blocked), this field displays and is set to `true`. If the server is older than 0.80.0, this field does not display even if the server is amendment blocked. If the server is not amendment blocked, this field does not display. | +| `amendment_blocked` | Boolean | _(May be omitted)_ If `true`, this server is [amendment blocked](concept-amendments.html#amendment-blocked). If the server is not amendment blocked, the response omits this field. [New in: rippled 0.80.0][] | | `build_version` | String | The version number of the running `rippled` version. | | `complete_ledgers` | String | Range expression indicating the sequence numbers of the ledger versions the local `rippled` has in its database. It is possible to be a disjoint sequence, e.g. "2500-5000,32570-7695432". | | `closed_ledger` | Object | (May be omitted) Information on the most recently closed ledger that has not been validated by consensus. If the most recently validated ledger is available, the response omits this field and includes `validated_ledger` instead. The member fields are the same as the `validated_ledger` field. | diff --git a/content/snippets/rippled_versions.md b/content/snippets/rippled_versions.md index 2d2174d226..d877700bcc 100644 --- a/content/snippets/rippled_versions.md +++ b/content/snippets/rippled_versions.md @@ -29,3 +29,4 @@ [New in: rippled 0.70.0]: https://github.com/ripple/rippled/releases/tag/0.70.0 "BADGE_BLUE" [New in: rippled 0.70.2]: https://github.com/ripple/rippled/releases/tag/0.70.2 "BADGE_BLUE" [New in: rippled 0.80.1]: https://github.com/ripple/rippled/releases/tag/0.80.1 "BADGE_BLUE" +[New in: rippled 0.80.0]: https://github.com/ripple/rippled/releases/tag/0.80.0 "BADGE_BLUE"