Browse Source

Merge pull request #569 from hermeznetwork/fix/node-redundant-condition

node: remove redundant error check
feature/common-tests-update
arnau 3 years ago
committed by GitHub
parent
commit
ffda9fa1ef
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 3 deletions
  1. +0
    -3
      node/node.go

+ 0
- 3
node/node.go

@ -246,9 +246,6 @@ func NewNode(mode Mode, cfg *config.Node) (*Node, error) {
if err != nil {
return nil, tracerr.Wrap(err)
}
if err != nil {
return nil, tracerr.Wrap(err)
}
serverProofs := make([]prover.Client, len(cfg.Coordinator.ServerProofs))
for i, serverProofCfg := range cfg.Coordinator.ServerProofs {
serverProofs[i] = prover.NewProofServerClient(serverProofCfg.URL,

Loading…
Cancel
Save