Improve messaging during dkg demo (#128)

The group signature must be a quoted string, to meet serde_json formatting needs, which is not clear to the user currently.
This commit is contained in:
Jesse Eisenberg 2024-01-30 05:19:27 +07:00 committed by GitHub
parent 62964d3246
commit e9269f204e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ fn request_signature(
input: &mut impl BufRead,
logger: &mut impl Write,
) -> Result<Signature, Box<dyn std::error::Error>> {
writeln!(logger, "The group signature:")?;
writeln!(logger, "The group signature (as a \"quoted_string\"):")?;
let mut signature_input = String::new();