trezorctl: add hexlify to stellar_get_public_key

pull/25/head
Pavol Rusnak 6 years ago
parent cf661a8196
commit 7cf46c6833
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

@ -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')

Loading…
Cancel
Save