Changes account example to account that has a non-empty list of offers for account_offers.md

This commit is contained in:
rmurphy23
2020-07-27 13:20:37 -07:00
parent f10a297530
commit 96e126e7e0

View File

@@ -36,7 +36,7 @@ An example of the request format:
```sh ```sh
#Syntax: account_offers account [ledger_index] [strict] #Syntax: account_offers account [ledger_index] [strict]
rippled account_offers r9cZA1mLK5R5Am25ArfXFmqgNwjZgnfk59 current strict rippled account_offers rpP2JgiMyTF5jR5hLG3xHCPi1knBb1v9cM current strict
``` ```
<!-- MULTICODE_BLOCK_END --> <!-- MULTICODE_BLOCK_END -->
@@ -157,9 +157,21 @@ An example of a successful response:
```json ```json
{ {
"result" : { "result" : {
"account" : "r9cZA1mLK5R5Am25ArfXFmqgNwjZgnfk59", "account" : "rpP2JgiMyTF5jR5hLG3xHCPi1knBb1v9cM",
"ledger_current_index" : 56843824, "ledger_current_index" : 57110969,
"offers" : [], "offers" : [
{
"flags" : 0,
"quality" : "1499850014.892974",
"seq" : 7916201,
"taker_gets" : {
"currency" : "BCH",
"issuer" : "rcyS4CeCZVYvTiKcxj6Sx32ibKwcDHLds",
"value" : "0.5268598580881351"
},
"taker_pays" : "790210766"
}
],
"status" : "success", "status" : "success",
"validated" : false "validated" : false
} }