mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-15 19:08:07 +00:00
xmr: key image sync progress
This commit is contained in:
parent
d919e99255
commit
3020b5d4a9
@ -70,6 +70,8 @@ async def _sync_step(s, ctx, tds):
|
|||||||
buff = bytearray(32 * 3)
|
buff = bytearray(32 * 3)
|
||||||
buff_mv = memoryview(buff)
|
buff_mv = memoryview(buff)
|
||||||
|
|
||||||
|
await confirms.keyimage_sync_step(ctx, s.current_output, s.num_outputs)
|
||||||
|
|
||||||
for td in tds.tdis:
|
for td in tds.tdis:
|
||||||
s.current_output += 1
|
s.current_output += 1
|
||||||
if s.current_output >= s.num_outputs:
|
if s.current_output >= s.num_outputs:
|
||||||
|
@ -123,3 +123,12 @@ async def transaction_step(ctx, step, sub_step=None, sub_step_total=None):
|
|||||||
text = Text("Signing transaction", ui.ICON_SEND, icon_color=ui.BLUE)
|
text = Text("Signing transaction", ui.ICON_SEND, icon_color=ui.BLUE)
|
||||||
text.normal(*info)
|
text.normal(*info)
|
||||||
text.render()
|
text.render()
|
||||||
|
|
||||||
|
|
||||||
|
@ui.layout
|
||||||
|
async def keyimage_sync_step(ctx, current, total_num):
|
||||||
|
if current is None:
|
||||||
|
return
|
||||||
|
text = Text("Syncing", ui.ICON_SEND, icon_color=ui.BLUE)
|
||||||
|
text.normal("%d/%d" % (current + 1, total_num))
|
||||||
|
text.render()
|
||||||
|
Loading…
Reference in New Issue
Block a user