Skip to content

Commit 424af1b

Browse files
authored
Merge pull request #85 from wydengyre/test-taproot
tests: exercise taproot tweak
2 parents 7203ca0 + f4de783 commit 424af1b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

python/tests.py

+6
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,12 @@ def rand_polynomial(t):
8181
for i in range(n)
8282
)
8383

84+
vssc_tweaked, tweak, pubtweak = vss.commit().invalid_taproot_commit()
85+
assert VSSCommitment.verify_secshare(vss.secret() + tweak, vss.commit().commitment_to_secret() + pubtweak)
86+
assert all(
87+
VSSCommitment.verify_secshare(secshares[i] + tweak, vssc_tweaked.pubshare(i))
88+
for i in range(n)
89+
)
8490

8591
def simulate_simplpedpop(
8692
seeds, t, investigation: bool

0 commit comments

Comments
 (0)