keyfork-shard: improve wording for counting shardholders
This commit is contained in:
parent
94617722a0
commit
23db50956f
|
@ -449,9 +449,9 @@ pub fn remote_decrypt(w: &mut impl Write) -> Result<(), Box<dyn std::error::Erro
|
||||||
) {
|
) {
|
||||||
pm.prompt_message(PromptMessage::Text(format!(
|
pm.prompt_message(PromptMessage::Text(format!(
|
||||||
concat!(
|
concat!(
|
||||||
"A QR code will be displayed after this prompt. ",
|
"QR code #{iter} will be displayed after this prompt. ",
|
||||||
"Send the QR code to only shardholder {iter}. ",
|
"Send the QR code to the next shardholder. ",
|
||||||
"Nobody else should scan this QR code."
|
"Only the next shardholder should scan the QR code."
|
||||||
),
|
),
|
||||||
iter = iter
|
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!(
|
pm.prompt_message(PromptMessage::Text(format!(
|
||||||
concat!(
|
concat!(
|
||||||
"Upon request, these words should be sent to shardholder {iter}: ",
|
"Upon request, these words should be sent to the shardholder: ",
|
||||||
"{key_mnemonic}"
|
"{key_mnemonic}"
|
||||||
),
|
),
|
||||||
iter = iter,
|
|
||||||
key_mnemonic = key_mnemonic,
|
key_mnemonic = key_mnemonic,
|
||||||
)))?;
|
)))?;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue