Skip to content
Snippets Groups Projects
Commit a35ff1aa authored by Benjamin Wenger's avatar Benjamin Wenger
Browse files

made it not supress permissioning error

parent 915c25d0
No related branches found
No related tags found
No related merge requests found
......@@ -178,6 +178,10 @@ func loadClient(session *storage.Session, rngStreamGen *fastRNG.StreamGenerator)
//initialize permissioning
c.permissioning, err = permissioning.Init(c.comms, def)
if err != nil {
return nil, errors.WithMessage(err, "failed to init "+
"permissioning handler")
}
// check the client version is up to date to the network
err = c.checkVersion()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment