You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the BatchTransaction function located in client_call.go line 369, the type of gasBudget is incorrect. Currently, it is defined as an uint64, but it should be types.SafeSuiBigInt[uint64] to align with the expected type and prevent errors during transaction execution.
Problem
In the
BatchTransaction
function located in client_call.go line 369, the type ofgasBudget
is incorrect. Currently, it is defined as anuint64
, but it should betypes.SafeSuiBigInt[uint64]
to align with the expected type and prevent errors during transaction execution.Suggested Solution
Update the function as follows:
The text was updated successfully, but these errors were encountered: