We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Expected: UnGuard method should contain also these two parameters: guardian address and guardian signature. https://docs.multiversx.com/developers/built-in-functions/#unguardaccount
Actual: ` def create_transaction_for_unguarding_account(self, sender: IAddress) -> Transaction: data_parts = ["UnGuardAccount"]
transaction = TransactionBuilder( config=self.config, sender=sender, receiver=sender, data_parts=data_parts, gas_limit=self.config.gas_limit_unguard_account, add_data_movement_gas=True ).build() transaction.options = 2 return transaction`
The text was updated successfully, but these errors were encountered:
This has been fixed in feat/next. Will close it when that is merged into main.
main
Sorry, something went wrong.
popenta
No branches or pull requests
Expected:
UnGuard method should contain also these two parameters: guardian address and guardian signature.
https://docs.multiversx.com/developers/built-in-functions/#unguardaccount
Actual:
` def create_transaction_for_unguarding_account(self, sender: IAddress) -> Transaction:
data_parts = ["UnGuardAccount"]
The text was updated successfully, but these errors were encountered: