Remove mention of Status in guide

Keep it in the code doc.
This commit is contained in:
Franck Royer 2021-08-13 16:02:54 +10:00
parent 6d42c39298
commit 6ded9630b2
No known key found for this signature in database
GPG Key ID: A82ED75A8DFC50A4
2 changed files with 2 additions and 2 deletions

View File

@ -82,7 +82,7 @@ function App() {
# Connect to Other Peers # Connect to Other Peers
The Waku instance needs to connect to other peers to communicate with the network. The Waku instance needs to connect to other peers to communicate with the network.
First, create `bootstrapWaku` to connect to Waku bootstrap nodes (hosted by Status): First, create `bootstrapWaku` to connect to Waku bootstrap nodes:
```js ```js
import { getBootstrapNodes } from 'js-waku'; import { getBootstrapNodes } from 'js-waku';

View File

@ -41,7 +41,7 @@ import { Waku } from 'js-waku';
const wakuNode = await Waku.create({ bootstrap: true }); const wakuNode = await Waku.create({ bootstrap: true });
``` ```
Passing the `bootstrap` option will connect your node to predefined Waku nodes hosted by Status. Passing the `bootstrap` option will connect your node to predefined Waku nodes.
If you want to bootstrap to your own nodes, you can pass an array of multiaddresses instead: If you want to bootstrap to your own nodes, you can pass an array of multiaddresses instead:
```js ```js