(idx int, err error)
| 598 | } |
| 599 | |
| 600 | func (p *Plugin) recipientError(idx int, err error) int { |
| 601 | if err := p.writeError([]string{"recipient", fmt.Sprint(idx)}, err); err != nil { |
| 602 | return p.fatalf("%v", err) |
| 603 | } |
| 604 | return 3 |
| 605 | } |
| 606 | |
| 607 | func (p *Plugin) identityError(idx int, err error) int { |
| 608 | if err := p.writeError([]string{"identity", fmt.Sprint(idx)}, err); err != nil { |
no test coverage detected