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

src/apps/common: fix typo in coins.py

This commit is contained in:
Pavol Rusnak 2018-05-24 15:47:03 +02:00
parent 5885cb867e
commit af7a66697b
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -277,4 +277,4 @@ def by_address_type(address_type):
for c in COINS:
if c.address_type == address_type:
return c
raise ValueError('Unknown coin address type %d' % version)
raise ValueError('Unknown coin address type %d' % address_type)