From 914c622d86c2fa08abf2581f0f9db8dcf1e01ec4 Mon Sep 17 00:00:00 2001 From: Justin Moon Date: Tue, 20 Sep 2022 16:14:52 -0500 Subject: [PATCH] Hardcode connection string --- src/App.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/App.js b/src/App.js index 4419b5e..c03b5ac 100644 --- a/src/App.js +++ b/src/App.js @@ -18,7 +18,9 @@ function App() { init().then(async () => { async function callback() { try { - const client = await WasmClient.load(); + // const client = await WasmClient.load(); + const connectionString = '{"members":[[0,"wss://fm-signet.sirion.io:443"]],"max_evil":0}' + const client = await WasmClient.new(connectionString); setClient(client); console.log("Successfully loaded client") } catch(e) {