improve client disconnect

This commit is contained in:
Dennis Dawson
2025-05-20 16:13:12 -07:00
parent f88f9d1cf0
commit a74231ab0d

View File

@@ -32,8 +32,9 @@ async function getAccount() {
}
finally {
// Disconnect from the client
await client.disconnect();
}
if (client && client.isConnected()) {
await client.disconnect();
} }
} // End of getAccount()
async function getNewAccount1() {
@@ -78,8 +79,9 @@ async function getAccountFromSeed(my_seed) {
}
finally {
// Disconnect from the client
await client.disconnect();
}
if (client && client.isConnected()) {
await client.disconnect();
} }
} // End of getAccountFromSeed()
// *****************************************************
@@ -169,8 +171,9 @@ async function getXrpBalance() {
}
finally {
// Disconnect from the client
await client.disconnect();
}
if (client && client.isConnected()) {
await client.disconnect();
} }
} // End of getXrpBalance()
// *******************************************************
@@ -202,7 +205,8 @@ async function getTokenBalance() {
}
finally {
// Disconnect from the client
await client.disconnect();
}
if (client && client.isConnected()) {
await client.disconnect();
} }
} // End of getTokenBalance()