Skip to content

Commit

Permalink
Hardcode connection string
Browse files Browse the repository at this point in the history
  • Loading branch information
justinmoon committed Sep 20, 2022
1 parent e1c7ad4 commit 914c622
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

1 comment on commit 914c622

@vercel
Copy link

@vercel vercel bot commented on 914c622 Sep 20, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.