(checksum string)
| 55 | } |
| 56 | |
| 57 | func (node *baseNode) Verify(checksum string) bool { |
| 58 | return node.checksum == "" || node.checksum == checksum |
| 59 | } |
| 60 | |
| 61 | func WithCACert(caCert string) NodeOption { |
| 62 | return func(node *baseNode) { |
nothing calls this directly
no outgoing calls
no test coverage detected