From 971710a262b728a3dffd10b580790bc922357e33 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Mon, 9 Mar 2020 17:50:24 -0700 Subject: [PATCH 1/2] account_tx: fix CLI syntax. --- .../public-rippled-methods/account-methods/account_tx.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/content/references/rippled-api/public-rippled-methods/account-methods/account_tx.md b/content/references/rippled-api/public-rippled-methods/account-methods/account_tx.md index 279a810b53..3532f5bcb0 100644 --- a/content/references/rippled-api/public-rippled-methods/account-methods/account_tx.md +++ b/content/references/rippled-api/public-rippled-methods/account-methods/account_tx.md @@ -45,8 +45,9 @@ An example of the request format: *Commandline* ``` -#Syntax account_tx account ledger_index_min ledger_index_max [offset] [limit] [binary] [count] [forward] -rippled -- account_tx r9cZA1mLK5R5Am25ArfXFmqgNwjZgnfk59 -1 -1 2 5 1 0 1 +# Syntax: account_tx account [ledger_index_min [ledger_index_max]] [limit] [offset] [binary] [count] [descending] +# For binary/count/descending use the parameter name for true and omit for false. +rippled -- account_tx r9cZA1mLK5R5Am25ArfXFmqgNwjZgnfk59 -1 -1 2 0 binary descending ``` From decf9697f922af985f5f124b3019a9f6e224d7b6 Mon Sep 17 00:00:00 2001 From: mDuo13 Date: Wed, 11 Mar 2020 02:18:36 -0700 Subject: [PATCH 2/2] account_tx: add comma --- .../public-rippled-methods/account-methods/account_tx.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/references/rippled-api/public-rippled-methods/account-methods/account_tx.md b/content/references/rippled-api/public-rippled-methods/account-methods/account_tx.md index 3532f5bcb0..8bffe6134e 100644 --- a/content/references/rippled-api/public-rippled-methods/account-methods/account_tx.md +++ b/content/references/rippled-api/public-rippled-methods/account-methods/account_tx.md @@ -46,7 +46,7 @@ An example of the request format: ``` # Syntax: account_tx account [ledger_index_min [ledger_index_max]] [limit] [offset] [binary] [count] [descending] -# For binary/count/descending use the parameter name for true and omit for false. +# For binary/count/descending, use the parameter name for true and omit for false. rippled -- account_tx r9cZA1mLK5R5Am25ArfXFmqgNwjZgnfk59 -1 -1 2 0 binary descending ```