mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 22:18:13 +00:00
apps/wallet/sign_identity: use secp256k1 by default
Fixes device_tests.test_msg_signidentity
This commit is contained in:
parent
089168209b
commit
f32e8c50d9
@ -86,6 +86,9 @@ async def layout_sign_identity(ctx, msg):
|
|||||||
from ..common import coins
|
from ..common import coins
|
||||||
from ..common import seed
|
from ..common import seed
|
||||||
|
|
||||||
|
if msg.ecdsa_curve_name is None:
|
||||||
|
msg.ecdsa_curve_name = 'secp256k1'
|
||||||
|
|
||||||
identity = serialize_identity(msg.identity)
|
identity = serialize_identity(msg.identity)
|
||||||
display_identity(identity, msg.challenge_visual)
|
display_identity(identity, msg.challenge_visual)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user