* Revert "[docs] Update getTransactions example request/response (#1106)"

This reverts commit 5314e5e7e9.

* Redo #1106 but with passing tests
This commit is contained in:
Elliot Lee
2019-12-11 22:54:33 -08:00
committed by GitHub
parent 5314e5e7e9
commit 29bc5303ae
4 changed files with 200 additions and 1094 deletions

View File

@@ -16,11 +16,7 @@ This method returns a promise that resolves with an array of transaction object
```javascript
const address = 'r9cZA1mLK5R5Am25ArfXFmqgNwjZgnfk59';
const options = {
maxLedgerVersion: 46220792,
minLedgerVersion: 42885331
};
return api.getTransactions(address, options).then(transaction => {
return api.getTransactions(address).then(transaction => {
/* ... */
});
```