Skip to content

Commit

Permalink
consistent naming
Browse files Browse the repository at this point in the history
  • Loading branch information
hwwhww committed Oct 16, 2023
1 parent 65e1371 commit 63aa303
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ def _load_kzg_trusted_setups(preset_name):
with open(trusted_setups_file_path, 'r') as f:
json_data = json.load(f)
trusted_setup_G1_lagrange = json_data['g1_lagrange']
trusted_setup_G2 = json_data['g2_monomial']
trusted_setup_G2_monomial = json_data['g2_monomial']

return trusted_setup_G2, trusted_setup_G1_lagrange
return trusted_setup_G2_monomial, trusted_setup_G1_lagrange


ALL_KZG_SETUPS = {
Expand Down

0 comments on commit 63aa303

Please sign in to comment.