From df17be0287f64c2aab701c82e80c8c9d6ac23352 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 28 May 2018 15:37:29 +0200 Subject: [PATCH] src/apps/wallet: import CoinInfo from correct module --- src/apps/wallet/sign_tx/addresses.py | 2 +- src/apps/wallet/sign_tx/helpers.py | 2 +- src/apps/wallet/sign_tx/signing.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apps/wallet/sign_tx/addresses.py b/src/apps/wallet/sign_tx/addresses.py index 724ac487b..ab930ac94 100644 --- a/src/apps/wallet/sign_tx/addresses.py +++ b/src/apps/wallet/sign_tx/addresses.py @@ -7,7 +7,7 @@ from trezor.utils import ensure from trezor.messages import FailureType from trezor.messages import InputScriptType -from apps.common.coins import CoinInfo +from apps.common.coininfo import CoinInfo from apps.common.address_type import addrtype_bytes from apps.wallet.sign_tx.scripts import * from apps.wallet.sign_tx.multisig import * diff --git a/src/apps/wallet/sign_tx/helpers.py b/src/apps/wallet/sign_tx/helpers.py index b5eafcce3..62ce1e855 100644 --- a/src/apps/wallet/sign_tx/helpers.py +++ b/src/apps/wallet/sign_tx/helpers.py @@ -7,7 +7,7 @@ from trezor.messages.TransactionType import TransactionType from trezor.messages.RequestType import TXINPUT, TXOUTPUT, TXMETA, TXEXTRADATA, TXFINISHED from trezor.messages import InputScriptType -from apps.common.coins import CoinInfo +from apps.common.coininfo import CoinInfo # Machine instructions # === diff --git a/src/apps/wallet/sign_tx/signing.py b/src/apps/wallet/sign_tx/signing.py index f129331de..1ab1a947a 100644 --- a/src/apps/wallet/sign_tx/signing.py +++ b/src/apps/wallet/sign_tx/signing.py @@ -10,7 +10,7 @@ from trezor.messages.TxRequestDetailsType import TxRequestDetailsType from trezor.messages.TxRequestSerializedType import TxRequestSerializedType from apps.common import address_type, coins -from apps.common.coins import CoinInfo +from apps.common.coininfo import CoinInfo from apps.wallet.sign_tx.addresses import * from apps.wallet.sign_tx.helpers import * from apps.wallet.sign_tx.scripts import *