1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-23 14:58:09 +00:00

core/recovery: remove unused get/set_slip39_threshold

This commit is contained in:
Tomas Susanka 2019-10-03 09:57:35 +00:00
parent 6ef0b8c4f2
commit 07b4f6e399
2 changed files with 0 additions and 11 deletions

View File

@ -62,16 +62,6 @@ def get_slip39_identifier() -> Optional[int]:
return common.get_uint16(_NAMESPACE, _SLIP39_IDENTIFIER)
def set_slip39_threshold(threshold: int) -> None:
_require_progress()
common.set_uint8(_NAMESPACE, _SLIP39_THRESHOLD, threshold)
def get_slip39_threshold() -> Optional[int]:
_require_progress()
return common.get_uint8(_NAMESPACE, _SLIP39_THRESHOLD)
def set_slip39_iteration_exponent(exponent: int) -> None:
_require_progress()
common.set_uint8(_NAMESPACE, _SLIP39_ITERATION_EXPONENT, exponent)

View File

@ -37,7 +37,6 @@ def process_slip39(words: str) -> Tuple[Optional[bytes], slip39.Share]:
storage.recovery.set_slip39_group_count(share.group_count)
storage.recovery.set_slip39_iteration_exponent(share.iteration_exponent)
storage.recovery.set_slip39_identifier(share.identifier)
storage.recovery.set_slip39_threshold(share.threshold)
storage.recovery.set_slip39_remaining_shares(
share.threshold - 1, share.group_index
)