From fc21241a493540691d791fc5cce71e357b6552fd Mon Sep 17 00:00:00 2001 From: "Peter D. Gray" Date: Mon, 31 Mar 2025 11:52:56 -0400 Subject: [PATCH] fun real vs simu test --- shared/teleport.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/shared/teleport.py b/shared/teleport.py index 9d6ca870..36a0d2d3 100644 --- a/shared/teleport.py +++ b/shared/teleport.py @@ -591,15 +591,14 @@ async def kt_send_psbt(psbt, psbt_len=None, post_signing=False): # - offer them to teleport it (we only come this far if possible) if num_to_complete <= 0: - # fully signed. we can probably finalize it too - # - they have no copy of the result, if it came in via teleport + # Sufficiently signed. We can probably finalize it too. # - if from USB, we'd be uploading back, SD would be saved, etc return ch = await ux_show_story("%d more signatures are still required. Press (T) to pick another co-signer to sign next, using QR codes, or ENTER for other options." % num_to_complete, title="Teleport PSBT?", escape='t') if ch != 't': # ENTER/CANCEL both come here because we don't want to lose the PSBT - # - they also do a "T" and teleport again + # - they can also do a "T" and teleport again from auth import done_signing await done_signing(psbt) return