From 7cbe4f21b6eec519444d648e92ff9383044f2c42 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Fri, 21 Apr 2017 16:42:42 -0700 Subject: [PATCH] Fix broken rippled version link in stand-alone-mode page --- concept-stand-alone-mode.html | 3 ++- content/concept-stand-alone-mode.md | 2 ++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/concept-stand-alone-mode.html b/concept-stand-alone-mode.html index 967525a368..74fbbceaea 100644 --- a/concept-stand-alone-mode.html +++ b/concept-stand-alone-mode.html @@ -175,7 +175,7 @@

Address: rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh

Secret: snoPBrXtMeMyMHUVTgbuqAfg1SUTb ("masterpassphrase")

Caution: If you create a new genesis ledger, the hard-coded default Reserve is 200 XRP minimum for funding a new address, with an increment of 50 XRP per object in the ledger. These values are higher than the current reserve requirements of the production network. (See also: Fee Voting)

-

[New in: rippled 0.50.0][] If you start a new genesis ledger with --start, all The genesis ledger contains an EnableAmendment pseudo-transaction to turn on all Amendments natively supported by the rippled server, except for amendments that you explicitly disable in the configuration file. The effects of those amendments are available starting from the very next ledger version.

+

New in: rippled 0.50.0 If you start a new genesis ledger with --start, all The genesis ledger contains an EnableAmendment pseudo-transaction to turn on all Amendments natively supported by the rippled server, except for amendments that you explicitly disable in the configuration file. The effects of those amendments are available starting from the very next ledger version.

Load Saved Ledger

You can start with a ledger version that was saved to disk if your rippled server was previously synced with the Ripple peer-to-peer network (either the production network or the Test Net).

1. Start rippled normally.

@@ -215,6 +215,7 @@

In stand-alone mode, rippled makes no distinction between a "closed" ledger version and a "validated" ledger version. (For more information about the difference, see The Ripple Ledger Consensus Process.)

Whenever rippled closes a ledger, it reorders the transactions according to a deterministic but hard-to-game algorithm. (This is an important part of consensus, since transactions may arrive at different parts of the network in different order.) When using rippled in stand-alone mode, you should manually advance the ledger before submitting a transaction that depends on the result of a transaction from a different address. Otherwise, the two transactions might be executed in reverse order when the ledger is closed. Note: You can safely submit multiple transactions from a single address to a single ledger, because rippled sorts transactions from the same address in ascending order by Sequence number.

+ diff --git a/content/concept-stand-alone-mode.md b/content/concept-stand-alone-mode.md index 9dddf008bb..28a577a3c9 100644 --- a/content/concept-stand-alone-mode.md +++ b/content/concept-stand-alone-mode.md @@ -105,3 +105,5 @@ rippled ledger_accept --conf=/path/to/rippled.cfg In stand-alone mode, `rippled` makes no distinction between a "closed" ledger version and a "validated" ledger version. (For more information about the difference, see [The Ripple Ledger Consensus Process](https://ripple.com/build/ripple-ledger-consensus-process/).) Whenever `rippled` closes a ledger, it reorders the transactions according to a deterministic but hard-to-game algorithm. (This is an important part of consensus, since transactions may arrive at different parts of the network in different order.) When using `rippled` in stand-alone mode, you should manually advance the ledger before submitting a transaction that depends on the result of a transaction from a different address. Otherwise, the two transactions might be executed in reverse order when the ledger is closed. **Note:** You can safely submit multiple transactions from a single address to a single ledger, because `rippled` sorts transactions from the same address in ascending order by [`Sequence` number](reference-transaction-format.html#common-fields). + +{% include 'snippets/rippled_versions.md' %}