Removes methods that were just rippled wrappers (#1550)

* remove getAccountInfo

* remove getAccountObjects

* remove getBalanceSheet (gateway_balances)

* remove getLedger

* remove getOrders (account_orders)

* remove getPaymentChannel (ledger_entry)

* remove getTransaction(s) (tx/account_tx)

* remove getSettings (account_info)

* remove getServerInfo (server_info)

* fix integ tests

* remove submit (also deprecated)

* fix integ tests

* add TODO
This commit is contained in:
Mayukha Vadari
2021-08-23 12:27:37 -04:00
parent 59396c3f8f
commit 0b08de5956
40 changed files with 160 additions and 1948 deletions

View File

@@ -182,7 +182,7 @@ describe('Connection', function () {
data: {disconnectOnServerInfo: true}
})
return this.client
.getServerInfo()
.request({command: "server_info"})
.then(() => {
assert(false, 'Should throw DisconnectedError')
})
@@ -211,7 +211,7 @@ describe('Connection', function () {
callback({message: 'not connected'})
}
return this.client
.getServerInfo()
.request({command: "server_info"})
.then(() => {
assert(false, 'Should throw DisconnectedError')
})