(format string, args ...any)
| 57 | } |
| 58 | |
| 59 | func (e *errorer) Errorf(format string, args ...any) { |
| 60 | e.err = errors.Join(e.err, fmt.Errorf(format, args...)) |
| 61 | } |
| 62 | |
| 63 | func validateLocalNodeInit(lns *node.LocalNodeStore) error { |
| 64 | // Validate that after LocalNodeStore has started it has been partially populated. |
no outgoing calls