Skip to content

Commit

Permalink
Merge pull request #26 from NillionNetwork/fix/correlation_coefficien…
Browse files Browse the repository at this point in the history
…t_typo

fix: typo in correlation coefficient that broke the program execution
  • Loading branch information
oceans404 authored May 7, 2024
2 parents b23284f + c2fa2e0 commit 7be504a
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ async def main():
userkey = getUserKeyFromFile(os.getenv("NILLION_USERKEY_PATH_PARTY_1"))
nodekey = getNodeKeyFromFile(os.getenv("NILLION_NODEKEY_PATH_PARTY_1"))
client = create_nillion_client(userkey, nodekey)
party_id = client.party_id()
user_id = client.user_id()
party_id = client.party_id
user_id = client.user_id
party_0_name="Party0"
party_1_name="Party1"
out_party_name="OutParty"
Expand Down

0 comments on commit 7be504a

Please sign in to comment.