Missing particles #46
Closed
PRIYAGHEWADE
started this conversation in
General
Replies: 2 comments
-
hey @PRIYAGHEWADE the only thing I'm spotting here is that the Arrays structures are experimental and are being considered for removal in a future versions. we suggest that you use python lists. See note here: https://github.com/orgs/NillionNetwork/discussions/40 |
Beta Was this translation helpful? Give feedback.
0 replies
-
Hey @PRIYAGHEWADE Dave from the product team here. I was just wondering how your journey with Nillion was going, have you been able to build anything else yet? Maybe you are interested in our new builder bounties where you can win lots of prizes |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Nada Program:
from nada_dsl import *
def nada_main():
party1 = Party(name="Party1")
my_array_1 = Array(SecretInteger(Input(name="my_array_1", party=party1)), size=1)
my_int1 = SecretInteger(Input(name="my_int1", party=party1))
Nada Client:
Verified compute by retrieving output of compute and print on system,
Error:
nillion | py_nillion_client.DealerError: computing: dealer initialization failed Booking service for compute failed: transaction failed: NotEnoughElementsAvailable()
After rebuilding same program without any changes we are getting,
nillion | py_nillion_client.ComputeError: computing: compute unexpected error: missing particles
Client program:
asyncio.run(main())
Beta Was this translation helpful? Give feedback.
All reactions