mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-02-18 10:32:02 +00:00
wallet/signing: imports fix
This commit is contained in:
parent
165faaeba4
commit
65481308e6
@ -2,6 +2,7 @@ from trezor.crypto.hashlib import sha256
|
|||||||
from trezor.messages.SignTx import SignTx
|
from trezor.messages.SignTx import SignTx
|
||||||
from trezor.messages import InputScriptType, FailureType
|
from trezor.messages import InputScriptType, FailureType
|
||||||
|
|
||||||
|
from apps.wallet.sign_tx.writers import *
|
||||||
|
|
||||||
class Bip143Error(ValueError):
|
class Bip143Error(ValueError):
|
||||||
pass
|
pass
|
||||||
|
@ -14,6 +14,7 @@ from apps.common import coins
|
|||||||
from apps.wallet.sign_tx.segwit_bip143 import *
|
from apps.wallet.sign_tx.segwit_bip143 import *
|
||||||
from apps.wallet.sign_tx.helpers import *
|
from apps.wallet.sign_tx.helpers import *
|
||||||
from apps.wallet.sign_tx.scripts import *
|
from apps.wallet.sign_tx.scripts import *
|
||||||
|
from apps.wallet.sign_tx.writers import *
|
||||||
|
|
||||||
# the number of bip32 levels used in a wallet (chain and address)
|
# the number of bip32 levels used in a wallet (chain and address)
|
||||||
_BIP32_WALLET_DEPTH = const(2)
|
_BIP32_WALLET_DEPTH = const(2)
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
from micropython import const
|
|
||||||
|
|
||||||
from trezor.messages.TxOutputBinType import TxOutputBinType
|
|
||||||
from trezor.messages.TxInputType import TxInputType
|
|
||||||
from trezor.crypto.hashlib import sha256
|
from trezor.crypto.hashlib import sha256
|
||||||
|
|
||||||
|
from apps.wallet.sign_tx.writers import *
|
||||||
|
|
||||||
# TX Serialization
|
# TX Serialization
|
||||||
# ===
|
# ===
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user