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

src/apps/wallet/ecdh: fix serialize_identity import path

This commit is contained in:
Pavol Rusnak 2018-03-11 22:59:20 +01:00
parent 2f440f17d3
commit cda9ae3be7
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -2,8 +2,9 @@ from trezor import ui
from trezor.crypto.hashlib import sha256 from trezor.crypto.hashlib import sha256
from trezor.messages.ECDHSessionKey import ECDHSessionKey from trezor.messages.ECDHSessionKey import ECDHSessionKey
from ustruct import pack, unpack from ustruct import pack, unpack
from trezor.utils import chunks, serialize_identity from trezor.utils import chunks
from apps.common.confirm import require_confirm from apps.common.confirm import require_confirm
from apps.wallet.sign_identity import serialize_identity
from trezor.ui.text import Text from trezor.ui.text import Text
from ..common import seed from ..common import seed