Skip to content

Commit

Permalink
change VDF with cls
Browse files Browse the repository at this point in the history
  • Loading branch information
programmingAthlete committed Nov 26, 2023
1 parent 771fb20 commit 5550796
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/crypto_VDF/verifiable_delay_functions/pietrzak.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ def setup(cls, security_param, sequential_param):

@classmethod
def eval(cls, public_params):
return VDF.eval_function(public_params=public_params)
return cls.eval_function(public_params=public_params)

@classmethod
def verify(cls, public_params, input_param, output_param, proof=None):
Expand Down

0 comments on commit 5550796

Please sign in to comment.