-
|
Beta Was this translation helpful? Give feedback.
Answered by
vikiival
Aug 28, 2021
Replies: 1 comment
-
Hey, I found a solution. Here is a snippet that you need payload = substrate.compose_call(
call_module='Currencies',
call_function='update_balance',
call_params={
'who': '', # add param
'currency_id': '', # add param
'amount': '', # add param
}
)
call = substrate.compose_call(
call_module='Sudo',
call_function='sudo',
call_params={
'call': payload.value,
}
) cc @arjanz: this issue can be closed :) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
arjanz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey,
I found a solution. Here is a snippet that you need
cc @arjanz: this issue can be closed :)