Skip to content
This repository was archived by the owner on Feb 16, 2025. It is now read-only.
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