Skip to content
Snippets Groups Projects
Commit 957729e1 authored by Josh Brooks's avatar Josh Brooks
Browse files

[LightweightPolling] Update for change in network.NewInstance

parent e16878c4
No related branches found
No related tags found
1 merge request!5Release
...@@ -92,7 +92,7 @@ func StartNotifications(params Params, noTLS, noFirebase bool) (*Impl, error) { ...@@ -92,7 +92,7 @@ func StartNotifications(params Params, noTLS, noFirebase bool) (*Impl, error) {
handler := NewImplementation(impl) handler := NewImplementation(impl)
comms := notificationBot.StartNotificationBot(&id.NotificationBot, params.Address, handler, cert, key) comms := notificationBot.StartNotificationBot(&id.NotificationBot, params.Address, handler, cert, key)
impl.Comms = comms impl.Comms = comms
i, err := network.NewInstance(impl.Comms.ProtoComms, &ndf.NetworkDefinition{AddressSpaceSize: 16}, nil, nil, network.None) i, err := network.NewInstance(impl.Comms.ProtoComms, &ndf.NetworkDefinition{AddressSpaceSize: 16}, nil, nil, network.None, false)
if err != nil { if err != nil {
return nil, errors.WithMessage(err, "Failed to start instance") return nil, errors.WithMessage(err, "Failed to start instance")
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment