keyfork-shard: improve wording for counting shardholders

This commit is contained in:
Ryan Heywood 2024-04-24 13:13:48 -04:00
parent 94617722a0
commit 23db50956f
Signed by: ryan
GPG Key ID: 8E401478A3FBEF72
1 changed files with 4 additions and 5 deletions

View File

@ -449,9 +449,9 @@ pub fn remote_decrypt(w: &mut impl Write) -> Result<(), Box<dyn std::error::Erro
) {
pm.prompt_message(PromptMessage::Text(format!(
concat!(
"A QR code will be displayed after this prompt. ",
"Send the QR code to only shardholder {iter}. ",
"Nobody else should scan this QR code."
"QR code #{iter} will be displayed after this prompt. ",
"Send the QR code to the next shardholder. ",
"Only the next shardholder should scan the QR code."
),
iter = iter
)))?;
@ -461,10 +461,9 @@ pub fn remote_decrypt(w: &mut impl Write) -> Result<(), Box<dyn std::error::Erro
pm.prompt_message(PromptMessage::Text(format!(
concat!(
"Upon request, these words should be sent to shardholder {iter}: ",
"Upon request, these words should be sent to the shardholder: ",
"{key_mnemonic}"
),
iter = iter,
key_mnemonic = key_mnemonic,
)))?;