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

trezorlib: update CallException to match the old one

which is now TrezorFailure
This commit is contained in:
matejcik 2018-11-23 16:00:04 +01:00
parent 1f2db3666b
commit 36a81fd9e7

View File

@ -22,9 +22,9 @@ import unicodedata
from typing import List, NewType
from .coins import slip44
from .exceptions import TrezorException
from .exceptions import TrezorFailure
CallException = TrezorException
CallException = TrezorFailure
HARDENED_FLAG = 1 << 31