(name string)
| 391 | } |
| 392 | |
| 393 | func fileExists(name string) bool { |
| 394 | _, err := os.Stat(name) |
| 395 | return err == nil |
| 396 | } |
| 397 | |
| 398 | // SignerPublicKeyBlobref returns the blobref of signer's public key. |
| 399 | // The blobref may not be valid (zero blob.Ref) if e.g the configuration |
no test coverage detected