From 910cfa91d4b03ef29cd378112665039f5db6cfad Mon Sep 17 00:00:00 2001 From: Jackson Mills Date: Thu, 25 May 2023 09:01:47 -0700 Subject: [PATCH] Update .env in js wallet tutorial (#1922) The tutorial explains the right way to do things, but the example code has a file that is out of date. It shows CLIENT="wss://s.altnet.rippletest.net" which is missing the ":51233/" required to actually connect via websocket. --- content/_code-samples/build-a-wallet/js/.env | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/content/_code-samples/build-a-wallet/js/.env b/content/_code-samples/build-a-wallet/js/.env index b032042bee..29bb55a3e0 100644 --- a/content/_code-samples/build-a-wallet/js/.env +++ b/content/_code-samples/build-a-wallet/js/.env @@ -1,3 +1,3 @@ -CLIENT="wss://s.altnet.rippletest.net/" +CLIENT="wss://s.altnet.rippletest.net:51233/" EXPLORER_NETWORK="testnet" -SEED="s████████████████████████████" \ No newline at end of file +SEED="s████████████████████████████"