Skip to content

Commit

Permalink
fix lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
chaitanyaprem committed Oct 16, 2023
1 parent fc35d3a commit de83bbf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion waku/v2/protocol/relay/waku_relay_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,9 @@ func createRelayNode(t *testing.T) (host.Host, *WakuRelay) {
bcaster := NewBroadcaster(10)
relay := NewWakuRelay(bcaster, 0, timesource.NewDefaultClock(), prometheus.DefaultRegisterer, utils.Logger())
relay.SetHost(host)
bcaster.Start(context.Background())
err = bcaster.Start(context.Background())
require.NoError(t, err)

return host, relay
}

Expand Down

0 comments on commit de83bbf

Please sign in to comment.