From 36a81fd9e72170529c4345ce2e8a8af816a88981 Mon Sep 17 00:00:00 2001 From: matejcik Date: Fri, 23 Nov 2018 16:00:04 +0100 Subject: [PATCH] trezorlib: update CallException to match the old one which is now TrezorFailure --- trezorlib/tools.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trezorlib/tools.py b/trezorlib/tools.py index cbbde4173..e63f20960 100644 --- a/trezorlib/tools.py +++ b/trezorlib/tools.py @@ -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