mirror of https://github.com/status-im/go-waku.git
doc: fix node.New examples
This commit is contained in:
parent
47cdb86aaf
commit
49baff14cd
|
@ -15,15 +15,13 @@ import (
|
|||
)
|
||||
|
||||
...
|
||||
wakuNode, err := node.New(context.Background(),
|
||||
node.WithWakuFilter(false),
|
||||
)
|
||||
wakuNode, err := node.New(node.WithWakuFilter(false))
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
return
|
||||
}
|
||||
|
||||
if err := wakuNode.Start(); err != nil {
|
||||
if err := wakuNode.Start(context.Background()); err != nil {
|
||||
fmt.Println(err)
|
||||
return
|
||||
}
|
||||
|
|
|
@ -25,15 +25,13 @@ import (
|
|||
)
|
||||
|
||||
...
|
||||
wakuNode, err := node.New(context.Background(),
|
||||
node.WithLightPush(),
|
||||
)
|
||||
wakuNode, err := node.New(node.WithLightPush())
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
return
|
||||
}
|
||||
|
||||
if err := wakuNode.Start(); err != nil {
|
||||
if err := wakuNode.Start(context.Background()); err != nil {
|
||||
fmt.Println(err)
|
||||
return
|
||||
}
|
||||
|
|
|
@ -16,15 +16,13 @@ import (
|
|||
)
|
||||
|
||||
...
|
||||
wakuNode, err := node.New(context.Background(),
|
||||
node.WithWakuRelay(),
|
||||
)
|
||||
wakuNode, err := node.New(node.WithWakuRelay())
|
||||
if err != nil {
|
||||
fmt.Println(err)
|
||||
return
|
||||
}
|
||||
|
||||
if err := wakuNode.Start(); err != nil {
|
||||
if err := wakuNode.Start(context.Background()); err != nil {
|
||||
fmt.Println(err)
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue