1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-22 15:38:11 +00:00

minor fixes

This commit is contained in:
Jan Pochyla 2016-12-08 16:31:10 +01:00
parent a4f103755b
commit 3e1b821b3c
2 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
from trezor.crypto.hashlib import sha256
from .signtx import HashWriter, write_varint
from apps.wallet.sign_tx.signing import HashWriter, write_varint
def message_digest(coin, message):

View File

@ -54,8 +54,8 @@ def dispatch_SignIdentity(*args, **kwargs):
@unimport
def dispatch_CipherKeyValue(*args, **kwargs):
from .cipherkeyvalue import layout_cipherkeyvalue
return layout_cipherkeyvalue(*args, **kwargs)
from .cipher_key_value import layout_cipher_key_value
return layout_cipher_key_value(*args, **kwargs)
def boot():