-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
after deployment of the salad contracts, we now wait for one epoch to pass. #79
base: develop
Are you sure you want to change the base?
Conversation
… pass. This is a workaround to a current issue where if the deployment and the first task happen in the same epoch, we hit several race conditions in the protocol implementation
…ives when an epoch transition event happens
…ther than 20 times
…t-one-epoch-after-delpoy
addresses = sys.argv[1:] | ||
for address in addresses: | ||
print(f'distributing ether to {address}') | ||
request_coins('http://contract.reuven.services.enigma.co:8001', address, 'ether') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
replace reuven with os.environ['enigma_namespace']
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I ended up implementing this by passing it in as an environment variable, which is replaced dynamically in the kubernetes environment.
Implemented in:
https://github.com/enigmampc/kubernetes/pull/26
5755845
scrtlabs/salad#53 (commit f4e726f
)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
see my comment
5755845
to
4f28dd5
Compare
This is a workaround to a current issue where if the deployment and the first task happen in the same epoch, we hit several race conditions in the protocol implementation.
While working on this I also added the following functionality: