diff --git a/content/references/rippled-api/transaction-formats/transaction-types/accountset.md b/content/references/rippled-api/transaction-formats/transaction-types/accountset.md index e052d541d0..3596f728b5 100644 --- a/content/references/rippled-api/transaction-formats/transaction-types/accountset.md +++ b/content/references/rippled-api/transaction-formats/transaction-types/accountset.md @@ -42,11 +42,11 @@ The `Domain` field is represented as the hex string of the lowercase ASCII of th To remove the `Domain` field from an account, send an AccountSet with the Domain set to an empty string. -You can put any domain in your account's `Domain` field. To prove that an account truly belongs to the same person or business as a domain, Ripple recommends establishing a "two-way link": +You can put any domain in your account's `Domain` field. To prove that an account and domain belong to the same person or business, Ripple recommends establishing a "two-way link": - Accounts you own should have a domain you own in the `Domain` field. -- A website hosted at that domain should have a text file listing accounts you own, and optionally other information about how you use the XRP Ledger. Conventionally, this file is named `ripple.txt`. For an example, see . - - To prevent man-in-the-middle attacks, this website should be hosted via HTTPS with an up-to-date TLS certificate. +- On a website at that domain, host a text file listing accounts you own, and optionally other information about how you use the XRP Ledger. Conventionally, this file is named `ripple.txt`. For an example, see . + **Caution:** To prevent man-in-the-middle attacks, serve your website using HTTPS with an up-to-date TLS certificate. ## AccountSet Flags diff --git a/content/tutorials/manage-the-rippled-server/load-a-saved-ledger-in-stand-alone-mode.md b/content/tutorials/manage-the-rippled-server/load-a-saved-ledger-in-stand-alone-mode.md index 9cff00007e..a194ac6cf9 100644 --- a/content/tutorials/manage-the-rippled-server/load-a-saved-ledger-in-stand-alone-mode.md +++ b/content/tutorials/manage-the-rippled-server/load-a-saved-ledger-in-stand-alone-mode.md @@ -38,13 +38,13 @@ rippled stop --conf=/path/to/rippled.cfg ## 5. Start `rippled` in stand-alone mode. -To load the most recent ledger version, you can use the `-a` and `--load` options when starting the server: +To load the most recent ledger version, start the server with the `-a` and `--load` options: ``` rippled -a --load --conf=/path/to/rippled.cfg ``` -To instead load a specific historical ledger, use the `--load` parameter along with the `--ledger` parameter, providing the ledger index or identifying hash of the ledger version to load: +To load a specific historical ledger, start the server with the `--load` parameter along with the `--ledger` parameter, providing the ledger index or identifying hash of the ledger version to load: ``` rippled -a --load --ledger 19860944 --conf=/path/to/rippled.cfg