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

src/apps/wallet: make flake8 happy

This commit is contained in:
Pavol Rusnak 2018-03-11 22:54:32 +01:00
parent e925baaf08
commit 45b7a472c5
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D

View File

@ -40,6 +40,7 @@ def get_ecdh_path(identity: str, index: int):
return address_n return address_n
def ecdh(seckey: bytes, peer_public_key: bytes, curve: str) -> bytes: def ecdh(seckey: bytes, peer_public_key: bytes, curve: str) -> bytes:
if curve == 'secp256k1': if curve == 'secp256k1':
from trezor.crypto.curve import secp256k1 from trezor.crypto.curve import secp256k1