Skip to content

Commit dcdbd1f

Browse files
authored
Merge pull request #78 from theStack/pop_prove-remove-aux_rand-param
simplpedpop: remove unused `aux_rand` parameter from `pop_prove`
2 parents 775d20f + fc16eb3 commit dcdbd1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/chilldkg_ref/simplpedpop.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ def pop_msg(idx: int) -> bytes:
3535
return idx.to_bytes(4, byteorder="big")
3636

3737

38-
def pop_prove(seckey: bytes, idx: int, aux_rand: bytes = 32 * b"\x00") -> Pop:
38+
def pop_prove(seckey: bytes, idx: int) -> Pop:
3939
sig = schnorr_sign(
4040
pop_msg(idx), seckey, aux_rand=random_bytes(32), tag_prefix=POP_MSG_TAG
4141
)

0 commit comments

Comments
 (0)