diff --git a/bolt-sidecar/src/driver.rs b/bolt-sidecar/src/driver.rs index 69ca91b7b..1f93f603d 100644 --- a/bolt-sidecar/src/driver.rs +++ b/bolt-sidecar/src/driver.rs @@ -262,9 +262,9 @@ impl SidecarDriver { const BOLT: &str = r#" ██████╗ ██████╗ ██╗ ████████╗ ██╔══██╗██╔═══██╗██║ ╚══██╔══╝ - ██████╔╝██║ ██║██║ ██║ - ██╔══██╗██║ ██║██║ ██║ - ██████╔╝╚██████╔╝███████╗██║ + ██████╔╝██║ ██║██║ ██║ + ██╔══██╗██║ ██║██║ ██║ + ██████╔╝╚██████╔╝███████╗██║ ╚═════╝ ╚═════╝ ╚══════╝╚═╝ "#; println!("{BOLT}"); @@ -328,6 +328,10 @@ impl SidecarDriver { let delegatees = self.constraints_client.find_delegatees(&validator_pubkey); let available_pubkeys = self.constraint_signer.available_pubkeys(); + debug!(?delegatees); + debug!(?available_pubkeys); + debug!(?validator_pubkey); + let Some(pubkey) = pick_public_key(validator_pubkey, available_pubkeys, delegatees) else { error!(%target_slot, "No available public key to sign constraints with"); let _ = response.send(Err(CommitmentError::Internal));