Appease my OCD by putting the timeout parameter after context.

pull/3351/head
derekpierre 2023-11-18 19:45:08 -05:00 committed by KPrasch
parent 37490696c6
commit f3e90a74b6
2 changed files with 2 additions and 2 deletions

View File

@ -568,8 +568,8 @@ class Bob(Character):
alice_verifying_key=alice_verifying_key,
bob_encrypting_key=self.public_keys(DecryptingPower),
bob_verifying_key=self.stamp.as_umbral_pubkey(),
context=context,
timeout=timeout,
**context,
)
# Refill message kits with newly retrieved capsule frags

View File

@ -262,8 +262,8 @@ class PRERetrievalClient(ThresholdAccessControlClient):
alice_verifying_key: PublicKey, # KeyFrag signer's key
bob_encrypting_key: PublicKey, # User's public key (reencryption target)
bob_verifying_key: PublicKey,
context: Dict,
timeout: int = DEFAULT_RETRIEVAL_TIMEOUT,
**context,
) -> Tuple[List[RetrievalResult], List[RetrievalError]]:
ursulas_in_map = treasure_map.destinations.keys()