mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-08 10:31:50 -05:00
fix ecdsa verify in test framework
This commit is contained in:
parent
f5cdc290d5
commit
568a1d7261
1 changed files with 1 additions and 1 deletions
|
@ -322,7 +322,7 @@ class ECPubKey():
|
|||
u1 = z*w % SECP256K1_ORDER
|
||||
u2 = r*w % SECP256K1_ORDER
|
||||
R = SECP256K1.affine(SECP256K1.mul([(SECP256K1_G, u1), (self.p, u2)]))
|
||||
if R is None or R[0] != r:
|
||||
if R is None or (R[0] % SECP256K1_ORDER) != r:
|
||||
return False
|
||||
return True
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue