We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 424af1b commit 1e34161Copy full SHA for 1e34161
python/tests.py
@@ -82,12 +82,17 @@ def rand_polynomial(t):
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)
+ assert VSSCommitment.verify_secshare(
86
+ vss.secret() + tweak, vss.commit().commitment_to_secret() + pubtweak
87
+ )
88
assert all(
- VSSCommitment.verify_secshare(secshares[i] + tweak, vssc_tweaked.pubshare(i))
89
+ VSSCommitment.verify_secshare(
90
+ secshares[i] + tweak, vssc_tweaked.pubshare(i)
91
92
for i in range(n)
93
94
95
+
96
def simulate_simplpedpop(
97
seeds, t, investigation: bool
98
) -> Optional[List[Tuple[simplpedpop.DKGOutput, bytes]]]:
0 commit comments