Merge #1596: gui(installer): disable cosigner keys

9573d809502f11426296aff7af9ffe7805a31d30 gui(installer): disable cosigner keys (Michael Mallan)

Pull request description:

  This resolves #1584 by disabling cosigner keys in the installer.

ACKs for top commit:
  edouardparis:
    ACK 9573d809502f11426296aff7af9ffe7805a31d30

Tree-SHA512: dc3d2995d28df7baaac938a35840e9fe5bda4b228a8dcd7ecb6a37627f8e382510a489abdf7d65373b21dd1129db40a5d3b96f055fc7d7a7288462ab44d09fca
This commit is contained in:
edouardparis 2025-03-21 16:04:56 +01:00
commit 502242543c
No known key found for this signature in database
GPG Key ID: E65F7A089C20DC8F

View File

@ -6,7 +6,7 @@ use crate::{
};
/// Whether to enable cosigner keys on all paths (excluding safety net paths).
const ENABLE_COSIGNER_KEYS: bool = true; // FIXME: Set to false after testing.
const ENABLE_COSIGNER_KEYS: bool = false;
/// The source of a descriptor public key.
#[derive(Debug, Clone, PartialEq, Eq)]