mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-06 18:21:45 +00:00
Fix web3signer test fails on macOS (#6588)
* Add lighthouse/key_legacy.p12 for macOS * Specify `-days 825` to meet Apple's requirements for TLS server certificates * Remove `-aes256` as it's ignored on exporting The following warning will appear: Warning: output encryption option -aes256 ignored with -export * Update certificates and keys
This commit is contained in:
@@ -130,7 +130,11 @@ mod tests {
|
||||
}
|
||||
|
||||
fn client_identity_path() -> PathBuf {
|
||||
tls_dir().join("lighthouse").join("key.p12")
|
||||
if cfg!(target_os = "macos") {
|
||||
tls_dir().join("lighthouse").join("key_legacy.p12")
|
||||
} else {
|
||||
tls_dir().join("lighthouse").join("key.p12")
|
||||
}
|
||||
}
|
||||
|
||||
fn client_identity_password() -> String {
|
||||
|
||||
Reference in New Issue
Block a user