Skip to content

Commit

Permalink
set role removal defaults to False
Browse files Browse the repository at this point in the history
  • Loading branch information
EtienneWallet committed Jan 14, 2025
1 parent 653401d commit 86fd826
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,9 +312,9 @@ def create_transaction_for_unsetting_special_role_on_fungible_token(
sender: Address,
user: Address,
token_identifier: str,
remove_role_local_mint: bool,
remove_role_local_burn: bool,
remove_role_esdt_transfer_role: bool
remove_role_local_mint: bool = False,
remove_role_local_burn: bool = False,
remove_role_esdt_transfer_role: bool = False
) -> Transaction:
parts = [
"unSetSpecialRole",
Expand Down

0 comments on commit 86fd826

Please sign in to comment.