We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7203ca0 + f4de783 commit 424af1bCopy full SHA for 424af1b
python/tests.py
@@ -81,6 +81,12 @@ def rand_polynomial(t):
81
for i in range(n)
82
)
83
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
+ )
90
91
def simulate_simplpedpop(
92
seeds, t, investigation: bool
0 commit comments