Skip to content

Commit

Permalink
Merge pull request #4626 from filecoin-project/fix/drand-peerid-loop
Browse files Browse the repository at this point in the history
bootstrap: don't return early when one drand resolution fails
  • Loading branch information
magik6k authored Oct 30, 2020
2 parents 3b16fad + 22742a9 commit 5a7863d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion node/modules/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func DrandBootstrap(ds dtypes.DrandSchedule) (dtypes.DrandBootstrap, error) {
addrs, err := addrutil.ParseAddresses(context.TODO(), d.Config.Relays)
if err != nil {
log.Errorf("reoslving drand relays addresses: %+v", err)
return res, nil
continue
}
res = append(res, addrs...)
}
Expand Down

0 comments on commit 5a7863d

Please sign in to comment.