mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-23 07:58:09 +00:00
tests: fix test_curves bug introduced in last commit
This commit is contained in:
parent
2de6d876a3
commit
5cd84e6870
@ -326,7 +326,7 @@ def to_POINT(p):
|
|||||||
|
|
||||||
|
|
||||||
def from_POINT(p):
|
def from_POINT(p):
|
||||||
return lambda p: (bn2int(p[0]), bn2int(p[1]))
|
return (bn2int(p[0]), bn2int(p[1]))
|
||||||
|
|
||||||
|
|
||||||
JACOBIAN = BIGNUM * 3
|
JACOBIAN = BIGNUM * 3
|
||||||
|
Loading…
Reference in New Issue
Block a user