Remove unnecessary code.

No reason to get the wallet when getting the lists of offers.
This commit is contained in:
Dennis Dawson
2022-06-01 09:34:06 -07:00
committed by GitHub
parent 41a5b554be
commit 682159f786

View File

@@ -561,11 +561,10 @@ Disconnect from the ledger.
async function getOffers() { async function getOffers() {
``` ```
Get the standby account wallet and connect to the ledger. Connect to the ledger.
``` ```
const standby_wallet = xrpl.Wallet.fromSeed(standbySeedField.value)
let net = getNet() let net = getNet()
const client = new xrpl.Client(net) const client = new xrpl.Client(net)
results = 'Connecting to ' + getNet() + '...' results = 'Connecting to ' + getNet() + '...'