1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2025-01-22 13:21:03 +00:00

trezorctl: add hexlify to stellar_get_public_key

This commit is contained in:
Pavol Rusnak 2018-06-11 19:14:06 +02:00
parent cf661a8196
commit 7cf46c6833
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -1040,7 +1040,7 @@ def stellar_get_address(connect, address, show_display):
def stellar_get_public_key(connect, address, show_display):
client = connect()
address_n = tools.parse_path(address)
return client.stellar_get_public_key(address_n, show_display)
return binascii.hexlify(client.stellar_get_public_key(address_n, show_display))
@cli.command(help='Sign a base64-encoded transaction envelope')