This commit is contained in:
Rostyslav Tyshko 2025-04-04 14:39:37 -04:00
parent a1ba0894d9
commit bd35f5e025

View File

@ -56,7 +56,7 @@ impl EphemeralKeyHolder {
pub fn log(&self) {
info!(
"Ephemeral private key is {:?}",
hex::encode(self.ephemeral_secret_key.to_bytes())
hex::encode(serde_json::to_vec(&self.ephemeral_secret_key).unwrap())
);
}
}