Merge pull request #2125 from XRPLF/fix-get-acct-info

fix: get-acct-info.js should use wss
This commit is contained in:
Rome Reginelli
2023-09-12 14:53:35 -07:00
committed by GitHub

View File

@@ -5,7 +5,7 @@ const xrpl = require("xrpl")
async function main() {
// Define the network client
const SERVER_URL = "https://s.altnet.rippletest.net:51234/"
const SERVER_URL = "wss://s.altnet.rippletest.net:51233/"
const client = new xrpl.Client(SERVER_URL)
await client.connect()