Skip to content
Snippets Groups Projects
Commit 5cdd8a02 authored by Jonah Husson's avatar Jonah Husson
Browse files

Fix host param

parent 942c185e
No related branches found
No related tags found
No related merge requests found
......@@ -85,7 +85,9 @@ func SignAndTransmit(keyPath, idfPath, contractPath, wallet, commitmentsAddress,
return err
}
h, err := cl.pc.AddHost(&utils.ServerID, commitmentsAddress, commitmentCert, connect.GetDefaultHostParams())
hp := connect.GetDefaultHostParams()
hp.AuthEnabled = false
h, err := cl.pc.AddHost(&utils.ServerID, commitmentsAddress, commitmentCert, hp)
if err != nil {
return err
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment