Not able to find peers [not enough connections] #2569
Unanswered
rohanjacin
asked this question in
Q&A
Replies: 1 comment
-
I also tried starting the node in the browser with help from the @waku/react guide, it gives me the following error. The code is function App() { return ( ); } export default App; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I've been trying to start a Light node, but am unable to find any peers/connections. The following is my setup
Node: v18.0.0
@waku/sdk : 0.0.25
The following is my code
`import { createLightNode,
waitForRemotePeer,
Protocols } from "@waku/sdk";
class Waku {
constructor () {
this.node = null;
}
}
const waku = new Waku();
waku.start();
console.log("Done");`
Beta Was this translation helpful? Give feedback.
All reactions