1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-12-22 22:38:08 +00:00

Stellar - Fix typo in confirm_init (#359)

This commit is contained in:
ZuluCrypto 2018-09-23 16:30:35 -06:00 committed by Pavol Rusnak
parent 86db527722
commit 17c3ff92f8

View File

@ -8,7 +8,7 @@ from apps.stellar import consts
async def require_confirm_init(ctx, address: str, network_passphrase: str):
text = Text("Confirm Stellar", ui.ICON_SEND, icon_color=ui.GREEN)
text.normal("Initialize singing with")
text.normal("Initialize signing with")
text.mono(*split(address))
await require_confirm(ctx, text, ButtonRequestType.ConfirmOutput)
network = get_network_warning(network_passphrase)