Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

quorum nit #51

Open
wants to merge 2 commits into
base: package3
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions hermit/shards/interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -220,8 +220,8 @@ def enter_group_information(self) -> Tuple[int, List[Tuple[int, int]]]:
print_formatted_text(
HTML(
"""
Each of the <i>Q</i> groups is itself broken into <i>m</i> shards, <i>n</i> of which are
required to unlock the group (<i>n of m</i> shards).
Each of the <i>Q</i> groups is itself broken into <i>n</i> shards, <i>m</i> of which are
required to unlock the group (<i>m of n</i> shards).

Unlocking the wallet requires unlocking <i>P</i> groups and unlocking each
group requires unlocking <i>n</i> shards for that group.
Expand All @@ -235,7 +235,7 @@ def enter_group_information(self) -> Tuple[int, List[Tuple[int, int]]]:
)
)
input_error_message = HTML(
"Please enter a shard configuration in the form '<i>n of m</i>' where <i>n</i> and <i>m</i> are small integers."
"Please enter a shard configuration in the form '<i>m of n</i>' where <i>n</i> and <i>m</i> are small integers."
)
while True:
try:
Expand Down