Skip to content

Commit

Permalink
chore: fix lightclient example (#1039)
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyaprem committed Mar 4, 2024
1 parent 0ba0f1f commit d4bda12
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions examples/basic-light-client/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ var ClusterID = altsrc.NewUintFlag(&cli.UintFlag{
})

var Shard = altsrc.NewUintFlag(&cli.UintFlag{
Name: "shard-type",
Name: "shard",
Value: 0,
Usage: "shard that the node is interested in publishing/receiving from.",
Destination: &shard,
Expand Down Expand Up @@ -115,7 +115,6 @@ func Execute() error {
node.WithHostAddress(hostAddr),
node.WithWakuFilterLightNode(),
node.WithClusterID(uint16(clusterID)),
node.WithLightPush(),
//node.WithLogLevel(zapcore.DebugLevel),
)
if err != nil {
Expand Down

0 comments on commit d4bda12

Please sign in to comment.