-
Notifications
You must be signed in to change notification settings - Fork 36
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
Use value parameter for unjailing nodes #442
Conversation
@@ -241,7 +241,7 @@ def install(self, overwrite: bool) -> None: | |||
self._install_sc_meta() | |||
self._install_wasm_opt() | |||
self._install_twiggy() | |||
self._install_sc_meta_deps() | |||
show_message("Please also install all the necessary dependencies required for `sc-meta` to run properly bu running the following command: `sc-meta install all`.") |
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.
Typo.
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.
fixed
|
||
tx = self._factory.create_transaction_for_unjailing_nodes( | ||
sender=owner.address, | ||
delegation_contract=delegation_contract, | ||
public_keys=public_keys | ||
public_keys=public_keys, | ||
amount=amount |
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.
Should have been a separate PR from the one that alters sc-meta
installation flow.
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'll move the alteration of sc-meta in another PR.
@@ -241,7 +241,7 @@ def install(self, overwrite: bool) -> None: | |||
self._install_sc_meta() | |||
self._install_wasm_opt() | |||
self._install_twiggy() | |||
self._install_sc_meta_deps() | |||
show_message("Please also install all the necessary dependencies required for `sc-meta` to run properly bu running the following command: `sc-meta install all`.") |
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.
Should have been a separate PR from the one adjusting the amount
for unjailing (for changelog / release note purposes).
Now setting value on transaction when unjailing nodes.